www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 3b0b2c59b7c7f52277e2b472042026512b7e4fe2
parent abaa4da5ab6559cc1b710698cf50d7188eff34f0
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue, 19 May 2015 01:12:52 -0400

Always show HTTP request resolution, even without debug flag

Diffstat:
Mchrome/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 @@ -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);