only log error in sync loop

This commit is contained in:
Bruno Windels 2019-10-12 22:18:19 +02:00
parent 3ba20dece1
commit ac53b9099b

View file

@ -58,7 +58,8 @@ export default class Sync extends EventEmitter {
} catch (err) {
this._isSyncing = false;
if (!(err instanceof RequestAbortError)) {
console.error("stopping sync because of error", err.stack);
console.error("stopping sync because of error");
console.error(err);
this.emit("status", "error", err);
}
}
@ -112,7 +113,7 @@ export default class Sync extends EventEmitter {
await syncTxn.complete();
console.info("syncTxn committed!!");
} catch (err) {
console.error("unable to commit sync tranaction", err.message);
console.error("unable to commit sync tranaction");
throw err;
}
// emit room related events after txn has been closed