forked from mystiq/hydrogen-web
also log session in after sync completed as detail level
This commit is contained in:
parent
dea11845f5
commit
8539b0c893
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ export class Sync {
|
|||
const isCatchupSync = this._status.get() === SyncStatus.CatchupSync;
|
||||
const sessionPromise = (async () => {
|
||||
try {
|
||||
await log.wrap("session", log => this._session.afterSyncCompleted(sessionChanges, isCatchupSync, log));
|
||||
await log.wrap("session", log => this._session.afterSyncCompleted(sessionChanges, isCatchupSync, log), log.level.Detail);
|
||||
} catch (err) {} // error is logged, but don't fail sessionPromise
|
||||
})();
|
||||
|
||||
|
|
Loading…
Reference in a new issue