diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-11-12 19:29:30 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-11-12 19:29:30 -0800 |
commit | b5cc47a9d1d7df7ec5a596fb72fad21f79d2e01c (patch) | |
tree | 6bfa32412591355593d25d6dc007470ea44ca9bd /ext/bg/js/util.js | |
parent | 0ff41d5843b3bf39994ae32e4ab623bfe0e4e3ca (diff) |
WIP
Diffstat (limited to 'ext/bg/js/util.js')
-rw-r--r-- | ext/bg/js/util.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/bg/js/util.js b/ext/bg/js/util.js index 914164b1..3ec80350 100644 --- a/ext/bg/js/util.js +++ b/ext/bg/js/util.js @@ -39,6 +39,7 @@ function promiseCallback(promise, callback) { return promise.then(result => { callback({result}); }).catch(error => { + console.log(error); callback({error}); }); } |