Print the exception with the stack on fault tolerance.

This commit is contained in:
Edward Lee 2009-07-09 18:05:58 -07:00
Родитель 0fe0ec3708
Коммит 702d6102c8
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -62,9 +62,9 @@ FTService.prototype = {
// our current state
},
onException: function FTS_onException(exception) {
this._lastException = exception;
this._log.debug(Utils.stackTrace(exception));
onException: function FTS_onException(ex) {
this._lastException = ex;
this._log.debug(Utils.exceptionStr(ex) + " " + Utils.stackTrace(ex));
return true; // continue sync if thrown by a sync engine
}
};