Remove extra space in log message (#171197)

This commit is contained in:
Matt Bierner
2023-01-12 11:43:08 -08:00
committed by GitHub
parent 54c55bcb3e
commit e14165e0f5

View File

@@ -39,7 +39,7 @@ export class Logger {
}
public logLevel(level: LogLevel, message: string, data?: any): void {
this.output.appendLine(`[${level} - ${this.now()}] ${message}`);
this.output.appendLine(`[${level} - ${this.now()}] ${message}`);
if (data) {
this.output.appendLine(this.data2String(data));
}