1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 10:19:30 +02:00

Fix inconsistent formatting.

This commit is contained in:
Simo Kinnunen 2014-01-29 21:21:47 +09:00
parent cc31ea2ad5
commit ad87d8ff10

View file

@ -66,12 +66,12 @@ Log.prototype.fatal = function() {
Log.prototype._entry = function(priority, args) { Log.prototype._entry = function(priority, args) {
return new Log.Entry( return new Log.Entry(
Date.now() Date.now()
, priority , priority
, this.tag , this.tag
, process.pid , process.pid
, this.localIdentifier || Logger.globalIdentifier , this.localIdentifier || Logger.globalIdentifier
, util.format.apply(util, args) , util.format.apply(util, args)
) )
} }