made calling logger.log safe if level is not provided as first argument (github issue #279)

This commit is contained in:
Gareth Jones
2015-04-17 08:31:12 +10:00
parent 1cdd37c488
commit adeb714243
2 changed files with 3 additions and 1 deletions

View File

@@ -51,7 +51,7 @@ Logger.prototype.removeLevel = function() {
Logger.prototype.log = function() {
var args = Array.prototype.slice.call(arguments)
, logLevel = levels.toLevel(args.shift())
, logLevel = levels.toLevel(args.shift(), levels.INFO)
, loggingEvent;
if (this.isLevelEnabled(logLevel)) {
loggingEvent = new LoggingEvent(this.category, logLevel, args, this);