Improve logs.

This commit is contained in:
Benoit Marty 2023-07-12 12:39:41 +02:00
parent 47b684f724
commit 1627dbfd27
3 changed files with 6 additions and 3 deletions

View file

@ -62,7 +62,7 @@ fun RoomListService.roomOrNull(roomId: String): RoomListItem? {
return try {
room(roomId)
} catch (exception: RoomListException) {
Timber.e(exception, "Failed finding room with id=$roomId")
Timber.d(exception, "Failed finding room with id=$roomId.")
return null
}
}