From a87e4202f4a289e1bfb15c3b94add88596a2b503 Mon Sep 17 00:00:00 2001 From: frdel <38891707+frdel@users.noreply.github.com> Date: Wed, 16 Jul 2025 08:56:25 +0200 Subject: [PATCH] log cleanup --- webui/components/chat/speech/speech-store.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/webui/components/chat/speech/speech-store.js b/webui/components/chat/speech/speech-store.js index 18b897b84..34ae8e10a 100644 --- a/webui/components/chat/speech/speech-store.js +++ b/webui/components/chat/speech/speech-store.js @@ -193,8 +193,6 @@ const model = { this.ttsStream.chunks = this.chunkText(cleanText); if (this.ttsStream.chunks.length == 0) return; - console.log("chunks updated", JSON.stringify(cleanText), this.ttsStream.chunks) - // if stream was already running, just updating chunks is enough if (this.ttsStream.running) return; else this.ttsStream.running = true; // proceed to running phase @@ -222,7 +220,6 @@ const model = { spoken.push(this.ttsStream.chunks[i]); await this._speak(this.ttsStream.chunks[i], i > 0, () => terminator()); } - console.log("finished speaking", spoken) // at the end, finish stream data this.ttsStream.running = false;