forked from mystiq/hydrogen-web
don't take network time into account in sync log filter
This commit is contained in:
parent
f2f9162b85
commit
ad0c813833
2 changed files with 18 additions and 2 deletions
|
@ -44,6 +44,22 @@ export class LogItem {
|
|||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
durationWithoutType(type) {
|
||||
return this.duration - this.durationOfType(type);
|
||||
}
|
||||
|
||||
durationOfType(type) {
|
||||
if (this._values.t === type) {
|
||||
return this.duration;
|
||||
} else if (this._children) {
|
||||
return this._children.reduce((sum, c) => {
|
||||
return sum + c.durationOfType(type);
|
||||
}, 0);
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new child item that finishes immediately
|
||||
|
|
|
@ -96,7 +96,7 @@ export class Sync {
|
|||
while(this._status.get() !== SyncStatus.Stopped) {
|
||||
let roomStates;
|
||||
let sessionChanges;
|
||||
let wasCatchup = this._status.get() === SyncStatus.CatchupSync;
|
||||
let wasCatchupOrInitial = this._status.get() === SyncStatus.CatchupSync || this._status.get() === SyncStatus.InitialSync;
|
||||
await this._logger.run("sync", async log => {
|
||||
log.set("token", syncToken);
|
||||
log.set("status", this._status.get());
|
||||
|
@ -150,7 +150,7 @@ export class Sync {
|
|||
},
|
||||
this._logger.level.Info,
|
||||
(filter, log) => {
|
||||
if (log.duration >= 2000 || log.error || wasCatchup) {
|
||||
if (log.durationWithoutType("network") >= 2000 || log.error || wasCatchupOrInitial) {
|
||||
return filter.minLevel(log.level.Detail);
|
||||
} else {
|
||||
return filter.minLevel(log.level.Info);
|
||||
|
|
Loading…
Reference in a new issue