From 3b0b2c59b7c7f52277e2b472042026512b7e4fe2 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 19 May 2015 01:12:52 -0400 Subject: [PATCH] Always show HTTP request resolution, even without debug flag --- chrome/content/zotero/xpcom/http.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/http.js b/chrome/content/zotero/xpcom/http.js index 72afa25df..a0cffa9c0 100644 --- a/chrome/content/zotero/xpcom/http.js +++ b/chrome/content/zotero/xpcom/http.js @@ -185,9 +185,9 @@ Zotero.HTTP = new function() { } if(success) { + Zotero.debug("HTTP " + method + " " + dispURL + + " succeeded with " + xmlhttp.status); if (options.debug) { - Zotero.debug("HTTP " + method + " " + dispURL - + " succeeded with " + xmlhttp.status); Zotero.debug(xmlhttp.responseText); } deferred.resolve(xmlhttp);