Use logError instead of console.log
This commit is contained in:
parent
7449ffd4dc
commit
9dfe531dfd
@ -99,7 +99,7 @@ class Database {
|
||||
});
|
||||
return true;
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
logError(e);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -505,7 +505,7 @@ function dictionaryErrorsShow(errors) {
|
||||
if (errors !== null && errors.length > 0) {
|
||||
const uniqueErrors = new Map();
|
||||
for (let e of errors) {
|
||||
console.error(e);
|
||||
logError(e);
|
||||
e = dictionaryErrorToString(e);
|
||||
let count = uniqueErrors.get(e);
|
||||
if (typeof count === 'undefined') {
|
||||
|
Loading…
Reference in New Issue
Block a user