From 9569cc9dac4855654fd6b56d9648f60cdbf04cd6 Mon Sep 17 00:00:00 2001 From: mic Date: Sun, 12 Jan 2025 21:02:38 +0100 Subject: [PATCH] console.log debug statemenents commented out --- js/special_commands/mzta-add-tags.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/special_commands/mzta-add-tags.js b/js/special_commands/mzta-add-tags.js index b126ef90..bc701dc5 100644 --- a/js/special_commands/mzta-add-tags.js +++ b/js/special_commands/mzta-add-tags.js @@ -69,7 +69,7 @@ } case "openai_comp_api": { let prefs_api = await browser.storage.sync.get({openai_comp_host: '', openai_comp_model: '', openai_comp_api_key: '', openai_comp_use_v1: true, openai_comp_chat_name: '', do_debug: false}); - console.log(">>>>>>>>>>>> [ThunderAI] prefs_api: " + JSON.stringify(prefs_api)); + // console.log(">>>>>>>>>>>> [ThunderAI] prefs_api: " + JSON.stringify(prefs_api)); this.worker.postMessage({ type: 'init', openai_comp_host: prefs_api.openai_comp_host, openai_comp_model: prefs_api.openai_comp_model, openai_comp_api_key: prefs_api.openai_comp_api_key, openai_comp_use_v1: prefs_api.openai_comp_use_v1, do_debug: this.do_debug, i18nStrings: ''}); break; } @@ -89,7 +89,7 @@ this.full_message += payload.token; break; case 'tokensDone': - console.log(">>>>>>>>>>>> [ThunderAI] tokensDone: " + this.full_message); + // console.log(">>>>>>>>>>>> [ThunderAI] tokensDone: " + this.full_message); resolve(this.full_message); // Resolve the promise with the full message break; case 'error':