Skip to content

Commit e3ae512

Browse files
committed
Prepend date to log lines
1 parent 8a1abd8 commit e3ae512

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/storage.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ export class Storage {
425425
}
426426

427427
public writeToCoderOutputChannel(message: string) {
428-
this.output.appendLine(message)
428+
this.output.appendLine(`[${new Date().toISOString()}] ${message}`)
429429
// We don't want to focus on the output here, because the
430430
// Coder server is designed to restart gracefully for users
431431
// because of P2P connections, and we don't want to draw

0 commit comments

Comments
 (0)