Better logging for early read syncs

This commit is contained in:
Fedor Indutny 2021-08-09 12:59:14 -07:00 committed by GitHub
parent 68b8877654
commit 440fb69efc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -67,7 +67,9 @@ export class ReadSyncs extends Collection {
);
});
if (sync) {
window.log.info('Found early read sync for message');
window.log.info(
`Found early read sync for message ${sync.get('timestamp')}`
);
this.remove(sync);
return sync;
}