Skip to content

Commit da32e25

Browse files
committed
Fixes log level
1 parent 004b1dc commit da32e25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/logger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class Logger {
4646
console.log(this.timestamp, ConsolePrefix, message, ...params);
4747
}
4848

49-
if (this.output !== undefined && this.level === OutputLevel.Verbose) {
49+
if (this.output !== undefined && (this.level === OutputLevel.Verbose || this.level === OutputLevel.Debug)) {
5050
this.output.appendLine((this.debug ? [this.timestamp, message, ...params] : [message, ...params]).join(' '));
5151
}
5252
}

0 commit comments

Comments
 (0)