Add extra logs to help debug session restoration failures (#1701)

This commit is contained in:
Jorge Martin Espinosa 2023-10-31 11:13:00 +01:00 committed by GitHub
parent 6bf400c8c5
commit 5757789d29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -92,7 +92,7 @@ class MatrixClientsHolder @Inject constructor(private val authenticationService:
sessionIdsToMatrixClient[matrixClient.sessionId] = matrixClient
}
.onFailure {
Timber.e("Fail to restore session")
Timber.e(it, "Fail to restore session")
}
}
}