We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 004b1dc commit da32e25Copy full SHA for da32e25
src/logger.ts
@@ -46,7 +46,7 @@ export class Logger {
46
console.log(this.timestamp, ConsolePrefix, message, ...params);
47
}
48
49
- if (this.output !== undefined && this.level === OutputLevel.Verbose) {
+ if (this.output !== undefined && (this.level === OutputLevel.Verbose || this.level === OutputLevel.Debug)) {
50
this.output.appendLine((this.debug ? [this.timestamp, message, ...params] : [message, ...params]).join(' '));
51
52
0 commit comments