Comparing version 0.0.8 to 0.0.9
{ | ||
"name": "devnull" | ||
, "version": "0.0.8" | ||
, "version": "0.0.9" | ||
, "description": "A simple logger with automatic function detection." | ||
@@ -5,0 +5,0 @@ , "homepage": "http://observer.no.de" |
@@ -150,3 +150,3 @@ "use strict"; | ||
// optional logging | ||
if (namespace) log.namespace = namespace; | ||
if (namespace && namespace.length) log.namespace = namespace; | ||
@@ -153,0 +153,0 @@ // unable to log, so we emit the to-log object so the user can handle it off |
@@ -52,5 +52,3 @@ "use strict"; | ||
+ this.logger.prefix[type] | ||
+ ' (' | ||
+ (namespace ? namespace.join('/') : '/') | ||
+ ') ' | ||
+ (namespace && namespace.length ? (' (' + namespace.join('/') + ') ') : ' ') | ||
+ this.logger.format.apply(this, args) | ||
@@ -57,0 +55,0 @@ + '\n'; |
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
56831
1557