diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-10-24 22:54:08 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-10-24 22:54:08 -0700 |
commit | 4b966c906d71387ef0ef380b27a9394d1d80829c (patch) | |
tree | 51c412f16b7f618bedc3bfe0c15a64f5db6d9b74 | |
parent | f85ef3c3a8caec82ee5201829f14c2ceb5c4fded (diff) | |
download | jp-hash-4b966c906d71387ef0ef380b27a9394d1d80829c.tar.gz jp-hash-4b966c906d71387ef0ef380b27a9394d1d80829c.tar.bz2 jp-hash-4b966c906d71387ef0ef380b27a9394d1d80829c.zip |
firefox: remove browser action log chatter.
* firefox/background.js (on_executed): Don't log
anything in the happy case.
(on_error): Log if this is called.
-rw-r--r-- | firefox/background.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firefox/background.js b/firefox/background.js index 9041c78..84b8635 100644 --- a/firefox/background.js +++ b/firefox/background.js @@ -24,11 +24,11 @@ function on_executed(result) { - console.log("executed"); } function on_error(error) { + console.log(`error: ${error}`); } function jp_hash_clicked() |