@voliware/logger
Advanced tools
Comparing version 1.4.3 to 1.4.4
const NodeBuild = require('@voliware/node-build'); | ||
const version = "1.4.3"; | ||
const version = require('./package.json').version; | ||
const name = "Logger"; | ||
@@ -4,0 +4,0 @@ const input = './src/logger.js'; |
{ | ||
"name": "@voliware/logger", | ||
"version": "1.4.3", | ||
"version": "1.4.4", | ||
"description": "A tiny Javascript logger with levels and several options. Supports Node and all modern Browsers", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -251,3 +251,6 @@ /** | ||
let msg = this.createMessage(message, level); | ||
let msg = (typeof message === "string") | ||
? this.createMessage(message, level) | ||
: message; | ||
return this.logMessage(msg); | ||
@@ -254,0 +257,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
27144
649