Add timestamps to azdata output channel output (#12530)

This commit is contained in:
Charles Gagnon
2020-09-21 10:51:08 -07:00
committed by GitHub
parent 1054164533
commit 92a8147c8d

View File

@@ -13,7 +13,7 @@ export class Log {
} }
log(msg: string): void { log(msg: string): void {
this._output.appendLine(msg); this._output.appendLine(`[${new Date().toISOString()}] ${msg}`);
} }
show(): void { show(): void {