1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 02:09:32 +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) {
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)
)
}