From 3838b0ab85324b96107c9feef7656f7eb7308895 Mon Sep 17 00:00:00 2001 From: Nad Alaba <37968805+nadalaba@users.noreply.github.com> Date: Sat, 4 Jul 2026 00:44:59 +0300 Subject: [PATCH] chore(dev): stop custom text settings from spamming debug logs (@nadalaba) (#7831) https://github.com/user-attachments/assets/2585aa6c-43c2-4789-85b9-f538da59dab6 --- frontend/src/ts/utils/local-storage-with-schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/ts/utils/local-storage-with-schema.ts b/frontend/src/ts/utils/local-storage-with-schema.ts index 4c1c35f399de..7e6522cfa5ac 100644 --- a/frontend/src/ts/utils/local-storage-with-schema.ts +++ b/frontend/src/ts/utils/local-storage-with-schema.ts @@ -31,7 +31,7 @@ export class LocalStorageWithSchema { public get(): T { if (this.cache !== undefined) { - console.debug(`LS ${this.key} Got cached value:`, this.cache); + //console.debug(`LS ${this.key} Got cached value:`, this.cache); return structuredClone(this.cache); }