commit 4cccf27bb12bc7a5578b51a448479a8500362d95
parent d20e90c6fa4c825f05863ba4b918c346e7380323
Author: Dan Stillman <dstillman@zotero.org>
Date: Fri, 1 Apr 2016 03:34:03 -0400
A few debug message tweaks
Diffstat:
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git 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
@@ -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) {