diff --git a/options/mzta-options.js b/options/mzta-options.js index 87a9ec46..cef25786 100644 --- a/options/mzta-options.js +++ b/options/mzta-options.js @@ -39,7 +39,7 @@ function saveOptions(e) { if (element.tagName === 'SELECT') { options[element.id] = element.value; }else{ - console.log('[ThunderAI] Unhandled input type:', element.type); + console.error("[ThunderAI] Unhandled input type:", element.type); } } @@ -75,7 +75,7 @@ async function restoreOptions() { element.selectedIndex = -1; } }else{ - console.log('[ThunderAI] Unhandled input type:', element.type); + console.error("[ThunderAI] Unhandled input type:", element.type); } } });