Merge pull request #5312 from vector-im/erikj/log_since_token
Log `since` token when doing an incremental sync
This commit is contained in:
commit
3707b4e2ca
|
@ -0,0 +1 @@
|
||||||
|
Log the `since` token used when doing an incremental sync.
|
|
@ -147,7 +147,7 @@ internal class DefaultSyncTask @Inject constructor(
|
||||||
}
|
}
|
||||||
defaultSyncStatusService.endAll()
|
defaultSyncStatusService.endAll()
|
||||||
} else {
|
} else {
|
||||||
Timber.tag(loggerTag.value).d("Start incremental sync request")
|
Timber.tag(loggerTag.value).d("Start incremental sync request with since token $token")
|
||||||
defaultSyncStatusService.setStatus(SyncStatusService.Status.IncrementalSyncIdle)
|
defaultSyncStatusService.setStatus(SyncStatusService.Status.IncrementalSyncIdle)
|
||||||
val syncResponse = try {
|
val syncResponse = try {
|
||||||
executeRequest(globalErrorReceiver) {
|
executeRequest(globalErrorReceiver) {
|
||||||
|
|
Loading…
Reference in New Issue