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

pass loggly http client errors to winston continuation #4

Merged
merged 1 commit into from Jul 25, 2017
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

pass loggly http client errors to winston continuation so they get pr…

…opagated up correctly and can be consumed by end users
  • Loading branch information
zachgrayio committed Oct 7, 2016
commit a680b387e504db1ba012a6fb641738cda522171f
@@ -108,9 +108,9 @@ Loggly.prototype.log = function (level, msg, meta, callback) {
//
// Helper function for responded to logging.
//
function logged() {
function logged(err) {
self.emit('logged');
callback(null, true);
callback(err, true);
}

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