From ebb2f1667d1d7d3edc8e6456b6705792b02aa07f Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 25 Apr 2016 00:49:27 -0400 Subject: [PATCH] Log feed errors to console --- 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 index f5f0dc47f..172a1819f 100644 --- 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'); }