Skip to content

Commit 316aff3

Browse files
committedApr 26, 2020
fix: add missing space after TRACE
1 parent fd6ee38 commit 316aff3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/log.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class Logger {
6262
trace(...args) {
6363
if (LEVEL.trace >= this.level) {
6464
this._writeDebugTimestamp('stderr');
65-
process.stderr.write(chalk[LEVEL_COLORS.trace](LEVEL_NAMES.trace));
65+
process.stderr.write(chalk[LEVEL_COLORS.trace](LEVEL_NAMES.trace) + ' ');
6666
console.trace(...args);
6767
}
6868
}

0 commit comments

Comments
 (0)
Please sign in to comment.