Skip to content

Commit

Permalink
Default logger.error should log to stderr. (palantir#3982)
Browse files Browse the repository at this point in the history
  • Loading branch information
bowenni authored and johnwiseheart committed Aug 22, 2018
1 parent cb23311 commit 52643a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tslintCli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ run(
outputStream.write(m);
},
error(m) {
process.stdout.write(m);
process.stderr.write(m);
},
})
.then((rc) => {
Expand Down

0 comments on commit 52643a0

Please sign in to comment.