summaryrefslogtreecommitdiffhomepage
path: root/js/src/util
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-05-23 16:51:53 -0400
committerDax Raad <[email protected]>2025-05-26 12:40:17 -0400
commit5c491758f57b4e5eaf8d15f3bcd02f775ab3edad (patch)
tree3f7df73c6d7e3ae39b1bef7ed145dd53712c137b /js/src/util
parent5f750b7368226ce455a6848f5f744d43179198e5 (diff)
downloadopencode-5c491758f57b4e5eaf8d15f3bcd02f775ab3edad.tar.gz
opencode-5c491758f57b4e5eaf8d15f3bcd02f775ab3edad.zip
sync
Diffstat (limited to 'js/src/util')
-rw-r--r--js/src/util/log.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/util/log.ts b/js/src/util/log.ts
index dff97f962..2d51b0d24 100644
--- a/js/src/util/log.ts
+++ b/js/src/util/log.ts
@@ -39,7 +39,7 @@ export namespace Log {
})
.map(([key, value]) => `${key}=${value}`)
.join(" ");
- return [prefix, message].join(" ") + "\n";
+ return [new Date().toISOString(), prefix, message].join(" ") + "\n";
}
const result = {
info(message?: any, extra?: Record<string, any>) {