Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

include timestamp in nodejs events #14

Merged
merged 2 commits into from Mar 29, 2017
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

set timestamp field true by default and also make it configurable

  • Loading branch information
Shwetajain148
Shwetajain148 committed Mar 29, 2017
commit e8f39b8c66c98fbea2ee299b78838dcb427db85b
@@ -58,7 +58,7 @@ var Loggly = exports.Loggly = function (options) {
bufferOptions: options.bufferOptions || {size: 500, retriesInMilliSeconds: 30 * 1000}
});

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

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.