Skip to content

Commit

Permalink
fix(logger): fix basic-terminal-writer superflous newline
Browse files Browse the repository at this point in the history
  • Loading branch information
eysi09 committed May 25, 2018
1 parent 014c5bf commit bfc0fcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logger/writers/basic-terminal-writer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class BasicTerminalWriter extends Writer {
onGraphChange(entry: LogEntry, rootLogNode: RootLogNode) {
const out = this.render(entry, rootLogNode)
if (out) {
console.log(out)
process.stdout.write(out)
}
}

Expand Down

0 comments on commit bfc0fcf

Please sign in to comment.