Improve the logs for TimelineException.CannotPaginate (#1708)
This commit is contained in:
parent
c774b2452b
commit
06514d8be5
1 changed files with 6 additions and 2 deletions
|
|
@ -194,8 +194,12 @@ class RustMatrixTimeline(
|
||||||
waitForToken = true,
|
waitForToken = true,
|
||||||
)
|
)
|
||||||
innerRoom.paginateBackwards(paginationOptions)
|
innerRoom.paginateBackwards(paginationOptions)
|
||||||
}.onFailure {
|
}.onFailure { error ->
|
||||||
Timber.d(it, "Fail to paginate for room ${matrixRoom.roomId}")
|
if (error is TimelineException.CannotPaginate) {
|
||||||
|
Timber.d("Can't paginate backwards on room ${matrixRoom.roomId}, we're already at the start")
|
||||||
|
} else {
|
||||||
|
Timber.e(error, "Error paginating backwards on room ${matrixRoom.roomId}")
|
||||||
|
}
|
||||||
}.onSuccess {
|
}.onSuccess {
|
||||||
Timber.v("Success back paginating for room ${matrixRoom.roomId}")
|
Timber.v("Success back paginating for room ${matrixRoom.roomId}")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue