Always show HTTP request resolution, even without debug flag
This commit is contained in:
parent
abaa4da5ab
commit
3b0b2c59b7
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue