Initial commit
This commit is contained in:
8
lib/logger.js
Normal file
8
lib/logger.js
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
module.exports = {
|
||||
debug: function() {console.log(arguments)},
|
||||
notice: function() {console.log(arguments)},
|
||||
info: function() {console.info(arguments)},
|
||||
warning: function() {console.warn(arguments)},
|
||||
error: function() {console.error(arguments)},
|
||||
}
|
||||
Reference in New Issue
Block a user