diff --git a/src/utils/logger.ts b/src/utils/logger.ts index ed419e99..2d3a1b92 100644 --- a/src/utils/logger.ts +++ b/src/utils/logger.ts @@ -4,9 +4,9 @@ window["SBLogs"] = { }; export function logDebug(message: string) { - window["SBLogs"].debug.push(message); + window["SBLogs"].debug.push(`[${new Date().toISOString()}] ${message}`); } export function logWarn(message: string) { - window["SBLogs"].warn.push(message); + window["SBLogs"].warn.push(`[${new Date().toISOString()}] ${message}`); } \ No newline at end of file