From a97abed53394eef36e0ff80fd3cd6873bb539ff2 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 11 Aug 2018 06:22:28 -0400 Subject: [PATCH] Extra logging for restart error --- chrome/content/zotero/zoteroPane.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index 754f4d8907..4f3d74075e 100644 --- a/chrome/content/zotero/zoteroPane.js +++ b/chrome/content/zotero/zoteroPane.js @@ -1638,6 +1638,7 @@ var ZoteroPane = new function() return true; }.bind(this))() .catch(function (e) { + Zotero.logError(e); this.displayErrorMessage(); throw e; }.bind(this)) @@ -4963,6 +4964,7 @@ var ZoteroPane = new function() self.setItemsPaneMessage(msg, true); } Zotero.debug(msg, 1); + Zotero.debug(new Error().stack, 1); } this.displayStartupError = function(asPaneMessage) {