Skip to content

Commit

Permalink
Merge pull request winstonjs#14 from Shwetajain148/include-timestamp-…
Browse files Browse the repository at this point in the history
…in-events

include timestamp in nodejs events
  • Loading branch information
mchaudhary authored Mar 29, 2017
2 parents 2908e2b + e8f39b8 commit 72406c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/winston-loggly.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ var Loggly = exports.Loggly = function (options) {
bufferOptions: options.bufferOptions || {size: 500, retriesInMilliSeconds: 30 * 1000}
});

this.timestamp = options.timestamp || false;
this.timestamp = options.timestamp === false ? false : true;
this.stripColors = options.stripColors || false;
};

Expand Down

0 comments on commit 72406c7

Please sign in to comment.