Changed color for logging timestamp to white.

This commit is contained in:
straccio
2016-03-08 15:59:44 +01:00
parent 1a710badef
commit b94c3caa3b

View File

@@ -67,7 +67,7 @@ Logger.prototype.log = function(level, msg) {
// prepend timestamp
var date = new Date();
msg = chalk.black("[" + date.toLocaleString() + "]") + " " + msg;
msg = chalk.white("[" + date.toLocaleString() + "]") + " " + msg;
func(msg);
}