diff --git a/chrome/content/zotero/xpcom/schema.js b/chrome/content/zotero/xpcom/schema.js index d639a7a25..c1176101a 100644 --- a/chrome/content/zotero/xpcom/schema.js +++ b/chrome/content/zotero/xpcom/schema.js @@ -424,6 +424,8 @@ Zotero.Schema = new function(){ try { yield Zotero.proxyAuthComplete.delay(1000); + Zotero.debug("Updating bundled " + (mode || "files")); + // Get path to add-on // Synchronous in Standalone diff --git a/chrome/content/zotero/xpcom/storage/webdav.js b/chrome/content/zotero/xpcom/storage/webdav.js index 67c9531b6..41dca035e 100644 --- a/chrome/content/zotero/xpcom/storage/webdav.js +++ b/chrome/content/zotero/xpcom/storage/webdav.js @@ -190,9 +190,6 @@ Zotero.Sync.Storage.Mode.WebDAV.prototype = { var username = this.username; var password = this.password; - Zotero.debug('=-=-=-='); - Zotero.debug(password); - if (!username) { throw new this.VerificationError("NO_USERNAME"); } @@ -999,7 +996,7 @@ Zotero.Sync.Storage.Mode.WebDAV.prototype = { var href = Zotero.Utilities.xpathText( response, "D:href", { D: 'DAV:' } ) || ""; - Zotero.debug(href); + Zotero.debug("Checking response entry " + href); // Strip trailing slash if there isn't one on the root path if (!trailingSlash) {