From a55852ea1c0d61b7330c6fc30417869306b63867 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 31 May 2017 00:43:19 -0400 Subject: [PATCH] Log Zotero.alert() calls to the terminal --- chrome/content/zotero/xpcom/zotero.js | 1 + 1 file changed, 1 insertion(+) diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index b76767298..1ec67380c 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -1127,6 +1127,7 @@ Services.scriptloader.loadSubScript("resource://zotero/polyfill.js"); * @param {String} msg */ this.alert = function (window, title, msg) { + this.debug(`Alert:\n\n${msg}`); var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"] .getService(Components.interfaces.nsIPromptService); ps.alert(window, title, msg);