summaryrefslogtreecommitdiff
path: root/ext/js/settings/main.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-02-14 17:52:01 -0500
committerGitHub <noreply@github.com>2021-02-14 17:52:01 -0500
commit9279ced68660610764931da681f22c8b71bf1b6e (patch)
tree2a4d015cf57adfe74af72615bad19c9308388e99 /ext/js/settings/main.js
parent286534e648af350d24fbf3c7892a7ec81aaeb4bd (diff)
Log refactoring (#1393)
* Create Logger class and log instance * Replace yomichan.logWarning with log.warn * Replace yomichan.logError with log.error * Replace yomichan.log with log.log * Update the Yomichan class to use the global log object * Update lint rules
Diffstat (limited to 'ext/js/settings/main.js')
-rw-r--r--ext/js/settings/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/settings/main.js b/ext/js/settings/main.js
index 51cd5f27..9785ee0e 100644
--- a/ext/js/settings/main.js
+++ b/ext/js/settings/main.js
@@ -104,6 +104,6 @@ async function setupEnvironmentInfo() {
yomichan.ready();
} catch (e) {
- yomichan.logError(e);
+ log.error(e);
}
})();