commit 55c331e68b1c44c7824694568a66017edb0b6284
parent 6fabce1d802bf76554c6d211509b6a3c8290c313
Author: Simon Kornblith <simon@simonster.com>
Date: Thu, 14 Jul 2011 19:19:08 +0000
Don't say anything when async processes are incremented or decremented
Diffstat:
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
@@ -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) {