Commit 54eea84e authored by Evgeny Bovykin's avatar Evgeny Bovykin

Add log function (debug)

parent 7a2f57c5
......@@ -32,7 +32,10 @@ define(function() {
} else {
console.info(this._processMsg(msg));
}
},
},
log: function(msg){
this.debug(msg);
}
};
var loggers = {},
......
{
"name": "ed3-logger",
"version": "2.0.0",
"version": "2.0.1",
"description": "The most basic logger you could ever imagine",
"main": "index.js",
"scripts": {
......
......@@ -5,3 +5,4 @@ logger.info("info");
logger.debug("debug");
logger.error("error");
logger.warn("warn");
logger.log("log");
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment