Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Default logger.error should log to stderr. #3982

Merged
merged 3 commits into from
Aug 22, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/tslint-cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ run(
outputStream.write(m);
},
error(m) {
process.stdout.write(m);
process.stderr.write(m);
},
})
.then((rc) => {
Expand Down