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/float.js | |
parent | 6a6e200ef947b92576351e39fc30b6653a576d70 (diff) |
Create utility function for logging errors
Diffstat (limited to 'ext/fg/js/float.js')
-rw-r--r-- | ext/fg/js/float.js | 2 |
1 files changed, 1 insertions, 1 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); } } |