Comparing version 1.4.3 to 1.4.4
{ | ||
"name": "errorlog", | ||
"description": "Yet another logger for Node", | ||
"version": "1.4.3", | ||
"version": "1.4.4", | ||
"author": { | ||
@@ -18,3 +18,3 @@ "name": "Pier Fumagalli", | ||
}, | ||
"homepage": "https://github.com/usrz/js-express-errorlog", | ||
"homepage": "https://github.com/usrz/js-errorlog", | ||
"keywords": [ | ||
@@ -21,0 +21,0 @@ "error", |
@@ -17,2 +17,3 @@ 'use strict'; | ||
log1.fatal('Something is really REALLY wrong...'); | ||
log1.log('This is a normal log'); | ||
@@ -30,2 +31,3 @@ console.log('\n... When a category is specified...\n'); | ||
log2.fatal('Something is really REALLY wrong...'); | ||
log2.log('This is a normal log'); | ||
@@ -43,3 +45,4 @@ console.log('\n... Boring output with defaultColorize = false...\n'); | ||
log2.fatal('Something is really REALLY wrong...'); | ||
log2.log('This is a normal log'); | ||
console.log('\n... There you go, all done...\n'); |
@@ -202,2 +202,3 @@ 'use strict'; | ||
var logger = function log() { emit(LOG, arguments) } | ||
logger.log = logger; // Keep for compatibility w/ console... | ||
logger.trace = function trace() { emit(TRACE, arguments) } | ||
@@ -204,0 +205,0 @@ logger.debug = function debug() { emit(DEBUG, arguments) } |
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
24676
470