format exception correctly when an engine throws during sync

This commit is contained in:
Dan Mills 2008-05-30 17:40:08 -07:00
Родитель 37dd2c0856
Коммит e56792c1f6
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -514,7 +514,7 @@ WeaveSvc.prototype = {
engine.sync(self.cb);
yield;
} catch(e) {
this._log.error(e.toString());
this._log.error(Utils.exceptionStr(e));
}
},