diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-08 21:33:10 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-08 22:38:05 -0400 |
commit | c5d6b9452d1bfa51a5fef9a19082d115ef180a9b (patch) | |
tree | 17f9a1bdd2b09937b776127a1764a3c9067082cf /ext/fg/js | |
parent | 6a6e200ef947b92576351e39fc30b6653a576d70 (diff) |
Create utility function for logging errors
Diffstat (limited to 'ext/fg/js')
-rw-r--r-- | ext/fg/js/float.js | 2 | ||||
-rw-r--r-- | ext/fg/js/frontend.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/fg/js/float.js b/ext/fg/js/float.js index 88842eef..8fdb6925 100644 --- a/ext/fg/js/float.js +++ b/ext/fg/js/float.js @@ -37,7 +37,7 @@ class DisplayFloat extends Display { if (window.yomichan_orphaned) { this.onOrphaned(); } else { - window.alert(`Error: ${error.toString ? error.toString() : error}`); + logError(error, true); } } diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index 39433afb..88cb93a9 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -228,7 +228,7 @@ class Frontend { } onError(error) { - console.log(error); + logError(error, false); } setEnabled(enabled) { |