Fixed something that I should've changed in my last commit; also removed a call to Utils.stackTrace() that shouldn't have been made.

This commit is contained in:
Atul Varma 2008-06-24 19:58:50 -07:00
parent d0b90b39c3
commit 130d3dbbe7

View File

@ -699,8 +699,8 @@ WeaveSvc.prototype = {
engine._tracker.resetScore();
} catch(e) {
this._log.error(Utils.exceptionStr(e));
if (e.trace)
this._log.trace(Utils.stackTrace(e.trace));
if (e.traceback)
this._log.trace(e.traceback);
}
},