Skip to content

Commit

Permalink
fix: don’t stop the logging
Browse files Browse the repository at this point in the history
I run into a problem where logging would simply stop working after a moment. I don’t understand exactly why, but this change fixes it
  • Loading branch information
gr2m committed Feb 22, 2017
1 parent 2f7b8fa commit 72c36e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/plugins/good-hoodie.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function transform (data, enc, next) {
}

log.silly(data.event, data)
next(null, data)
next(null)
}

function findLogLevel (levels, tags) {
Expand Down

0 comments on commit 72c36e9

Please sign in to comment.