Skip to content

Commit e943565

Browse files
committed
removing timestamp from logs
1 parent 5323b6c commit e943565

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

lib/logger.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,7 @@ Log.prototype = {
1313
log: function(levelStr, args) {
1414
if (logLevels[levelStr] <= this.level) {
1515
var msg = fmt.apply(null, args);
16-
this.stream.write(
17-
'[' + new Date + ']'
18-
+ ' ' + msg
19-
+ '\n'
20-
);
16+
this.stream.write(msg + '\n');
2117
}
2218
},
2319

0 commit comments

Comments
 (0)