From 37998e261d6bc69dec1042909840c92af887a1a2 Mon Sep 17 00:00:00 2001 From: lilia Date: Wed, 16 Sep 2015 14:41:20 -0700 Subject: [PATCH] Log more errors // FREEBIE --- js/background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/background.js b/js/background.js index bcc1586e5..44107d9be 100644 --- a/js/background.js +++ b/js/background.js @@ -116,6 +116,7 @@ function onError(ev) { var e = ev.error; + console.log(e); if (e.name === 'HTTPError' && (e.code == 401 || e.code == 403)) { extension.install(); @@ -147,7 +148,6 @@ }); } - console.error(e); throw e; }