From 55c331e68b1c44c7824694568a66017edb0b6284 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Thu, 14 Jul 2011 19:19:08 +0000 Subject: [PATCH] Don't say anything when async processes are incremented or decremented --- chrome/content/zotero/xpcom/translation/translate.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/translation/translate.js b/chrome/content/zotero/xpcom/translation/translate.js index ab418040a..e89734b54 100644 --- a/chrome/content/zotero/xpcom/translation/translate.js +++ b/chrome/content/zotero/xpcom/translation/translate.js @@ -766,7 +766,7 @@ Zotero.Translate.Base.prototype = { if(this._parentTranslator) { this._parentTranslator.incrementAsyncProcesses(); } else { - Zotero.debug("Translate: Incremented asynchronous processes to "+this._runningAsyncProcesses, 4); + //Zotero.debug("Translate: Incremented asynchronous processes to "+this._runningAsyncProcesses, 4); //Zotero.debug((new Error()).stack); } }, @@ -777,7 +777,7 @@ Zotero.Translate.Base.prototype = { "decrementAsyncProcesses":function(by) { this._runningAsyncProcesses -= (by ? by : 1); if(!this._parentTranslator) { - Zotero.debug("Translate: Decremented asynchronous processes to "+this._runningAsyncProcesses, 4); + //Zotero.debug("Translate: Decremented asynchronous processes to "+this._runningAsyncProcesses, 4); //Zotero.debug((new Error()).stack); } if(this._runningAsyncProcesses === 0) {