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