two console.log translated to console.error statement
This commit is contained in:
parent
ab0a9c5d10
commit
376b2acf4e
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue