commit ebb2f1667d1d7d3edc8e6456b6705792b02aa07f parent a05134e9032fe3348411dfbf808084f8e227ab21 Author: Dan Stillman <dstillman@zotero.org> Date: Mon, 25 Apr 2016 00:49:27 -0400 Log feed errors to console Diffstat:
| M | chrome/content/zotero/xpcom/data/feed.js | | | 3 | +-- |
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/chrome/content/zotero/xpcom/data/feed.js b/chrome/content/zotero/xpcom/data/feed.js @@ -463,8 +463,7 @@ Zotero.Feed.prototype._updateFeed = Zotero.Promise.coroutine(function* () { } catch (e) { if (e.message) { - Zotero.debug("Error processing feed from " + this.url); - Zotero.debug(e); + Zotero.logError("Error processing feed from " + this.url + ":\n\n" + e); } this._set('_feedLastCheckError', e.message || 'Error processing feed'); }