only log error in sync loop
This commit is contained in:
parent
3ba20dece1
commit
ac53b9099b
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Reference in a new issue