Print the exception with the stack on fault tolerance.
This commit is contained in:
Родитель
0fe0ec3708
Коммит
702d6102c8
|
@ -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
|
||||
}
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче