From fdcc02d953cf5dc046d9716581263c1fe2ea7f39 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 10 Nov 2008 06:34:47 +0000 Subject: [PATCH] Add mod time mismatch debugging --- chrome/content/zotero/xpcom/storage.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/storage.js b/chrome/content/zotero/xpcom/storage.js index cb7a94516c..42089d855a 100644 --- a/chrome/content/zotero/xpcom/storage.js +++ b/chrome/content/zotero/xpcom/storage.js @@ -601,7 +601,8 @@ Zotero.Sync.Storage = new function () { } if (mtimes[item.id] != fileModTime) { - Zotero.debug("Marking attachment " + item.id + " as changed"); + Zotero.debug("Marking attachment " + item.id + " as changed (" + + mtimes[item.id] + " != " + fileModTime + ")"); updatedStates[item.id] = Zotero.Sync.Storage.SYNC_STATE_TO_UPLOAD; }