From 61c10638cd253847c238df9a93c4872c2554a5a2 Mon Sep 17 00:00:00 2001 From: mic Date: Wed, 19 Jun 2024 21:50:46 +0200 Subject: [PATCH] commented out some console.log debug lines --- mzta-background.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mzta-background.js b/mzta-background.js index c8f1416b..87689dd4 100644 --- a/mzta-background.js +++ b/mzta-background.js @@ -69,7 +69,7 @@ messenger.runtime.onMessage.addListener(async (message, sender, sendResponse) => return true; case 'chatgpt_replyMessage': const paragraphsHtmlString = message.text; - console.log(">>>>>>>>>>>> paragraphsHtmlString: " + paragraphsHtmlString); + //console.log(">>>>>>>>>>>> paragraphsHtmlString: " + paragraphsHtmlString); let prefs = await browser.storage.sync.get({reply_type: 'reply_all'}); //console.log('reply_type: ' + prefs.reply_type); let replyType = 'replyToAll'; @@ -101,7 +101,7 @@ messenger.runtime.onMessage.addListener(async (message, sender, sendResponse) => const listener = (tabId, changeInfo, updatedTab) => { if (tabIsLoaded(updatedTab)) { browser.tabs.onUpdated.removeListener(listener); - console.log(">>>>>>>>>>>> reply_tab: " + tabId); + //console.log(">>>>>>>>>>>> reply_tab: " + tabId); resolve(); } }