fix more logging cleanup errors

This commit is contained in:
2025-05-28 20:20:09 -06:00
parent 931308f5b5
commit c7c7b050af
2 changed files with 2 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ export const logger = {
// eslint-disable-next-line no-console
console.debug(message, ...args);
const argsString = args.length > 0 ? " - " + safeStringify(args) : "";
logToDb(message + argsString);
// logToDb(message + argsString);
}
},
log: (message: string, ...args: unknown[]) => {