From 979f14966f89bb5ef58761c5115342ccd39d4a47 Mon Sep 17 00:00:00 2001 From: Mic Date: Thu, 16 Jan 2025 22:56:00 +0100 Subject: [PATCH] console.log debug statements commented out --- mzta-background.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mzta-background.js b/mzta-background.js index 4db6daab..4e3d05e5 100644 --- a/mzta-background.js +++ b/mzta-background.js @@ -242,11 +242,11 @@ messenger.runtime.onMessage.addListener((message, sender, sendResponse) => { async function _assign_tags() { let all_tags_list = await getTagsList(); all_tags_list = all_tags_list[1]; - console.log(">>>>>>>>>>>>>>> all_tags_list: " + JSON.stringify(all_tags_list)); + // console.log(">>>>>>>>>>>>>>> all_tags_list: " + JSON.stringify(all_tags_list)); taLog.log("assign_tags data: " + JSON.stringify(message)); let new_tags = []; for (const tag of message.tags) { - console.log(">>>>>>>>>>>>>>> tag: " + tag); + // console.log(">>>>>>>>>>>>>>> tag: " + tag); if (!checkIfTagExists(tag, all_tags_list)) { taLog.log("Creating tag: " + tag); await createTag(tag);