Last active
August 29, 2015 14:18
-
-
Save yumitsu/0bc626b1e715b9ec1418 to your computer and use it in GitHub Desktop.
Very simple logger class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Logger(loggerName) { | |
this.loggerName = loggerName || 'logger'; | |
this.date = new Date; | |
} | |
(function (prototype) { | |
prototype.time = function () { | |
var time = [ | |
this.date.getHours(), | |
this.date.getMinutes(), | |
this.date.getSeconds() | |
]; | |
time = time.map(function (e) { | |
if (e.length == 1) { | |
return '0' + e; | |
} else { | |
return e; | |
} | |
}); | |
return time.join(':'); | |
}; | |
prototype.prefix = function () { | |
return '[' + this.time() + ']' + ' ' + this.loggerName + ': '; | |
} | |
prototype.log = function (input) { | |
console.log(this.prefix() + input); | |
}; | |
prototype.warn = function (input) { | |
console.warn(this.prefix() + input); | |
}; | |
prototype.error = function (input) { | |
console.error(this.prefix() + input); | |
}; | |
prototype.info = function (input) { | |
console.info(this.prefix() + input); | |
}; | |
})(Logger.prototype); | |
module.exports = Logger; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment