diff --git a/lib/util/logger.js b/lib/util/logger.js index ab4e5d21..f2c46ea7 100644 --- a/lib/util/logger.js +++ b/lib/util/logger.js @@ -66,12 +66,12 @@ Log.prototype.fatal = function() { Log.prototype._entry = function(priority, args) { return new Log.Entry( - Date.now() - , priority - , this.tag - , process.pid - , this.localIdentifier || Logger.globalIdentifier - , util.format.apply(util, args) + Date.now() + , priority + , this.tag + , process.pid + , this.localIdentifier || Logger.globalIdentifier + , util.format.apply(util, args) ) }