commit 878500a011614072bd5daa7d0e8bd9d81eccbd70
parent c2e116a49a21d8988f6f1ce971d7e73a52428a4a
Author: Dan Stillman <dstillman@zotero.org>
Date: Mon, 10 Sep 2012 17:24:00 -0400
Add file sync debugging output from e599a207 to master
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/storage/streamListener.js b/chrome/content/zotero/xpcom/storage/streamListener.js
@@ -92,6 +92,8 @@ Zotero.Sync.Storage.StreamListener.prototype = {
onStateChange: function (wp, request, stateFlags, status) {
Zotero.debug("onStateChange");
+ Zotero.debug(stateFlags);
+ Zotero.debug(status);
if ((stateFlags & Components.interfaces.nsIWebProgressListener.STATE_START)
&& (stateFlags & Components.interfaces.nsIWebProgressListener.STATE_IS_NETWORK)) {
@@ -145,7 +147,7 @@ Zotero.Sync.Storage.StreamListener.prototype = {
// Private methods
//
_onStart: function (request) {
- //Zotero.debug('Starting request');
+ Zotero.debug('Starting request');
if (this._data && this._data.onStart) {
var data = this._getPassData();
this._data.onStart(request, data);
@@ -159,6 +161,7 @@ Zotero.Sync.Storage.StreamListener.prototype = {
},
_onStop: function (request, status) {
+ Zotero.debug('Request ended with status ' + status);
var cancelled = status == 0x804b0002; // NS_BINDING_ABORTED
if (!cancelled && request instanceof Components.interfaces.nsIHttpChannel) {