Skip to content

Commit

Permalink
fix make check
Browse files Browse the repository at this point in the history
  • Loading branch information
trentm committed May 4, 2017
1 parent 40ee250 commit 05a49c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/bunyan
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ var nodeSpawnSupportsStdio = (nodeVer[0] > 0 || nodeVer[1] >= 8);

// Internal debug logging via `console.warn`.
var _selfTrace = function selfTraceNoop() {};
if (process.env.BUNYAN_SELF_TRACE === "1") {
if (process.env.BUNYAN_SELF_TRACE === '1') {
_selfTrace = function selfTrace() {
process.stderr.write('[bunyan self-trace] ');
console.warn.apply(null, arguments);
Expand Down

0 comments on commit 05a49c3

Please sign in to comment.