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

LOG-8039 update packages #59

Merged
merged 18 commits into from Apr 6, 2020

Merge remote-tracking branch 'origin/master' into LOG-8039-update

  • Loading branch information
alestrunda committed Mar 31, 2020
commit 8df87fe6b9f4d1b97f528b93230441e2b20bbfed
@@ -143,11 +143,11 @@ Loggly.prototype.log = function(meta, callback) {
callback && callback(err, result);
}

result =
meta && meta.tags
? this.client.log(message, meta.tags, logged)
: this.client.log(message, logged);
const result = (meta && meta.tags)
? this.client.log(message, meta.tags, logged)
: this.client.log(message, logged);

callback();
return result;
};

You are viewing a condensed version of this merge commit. You can view the full changes here.
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.