mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-23 01:45:52 +03:00
Adds error print stack trace
This commit is contained in:
parent
54828f76cf
commit
31f300c724
1 changed files with 2 additions and 0 deletions
|
@ -51,6 +51,8 @@ internal class DefaultResolveSpaceInfoTask @Inject constructor(
|
||||||
private suspend fun getSpaceHierarchy() = try {
|
private suspend fun getSpaceHierarchy() = try {
|
||||||
getStableSpaceHierarchy()
|
getStableSpaceHierarchy()
|
||||||
} catch (e: Throwable) {
|
} catch (e: Throwable) {
|
||||||
|
Timber.w("Stable space hierarchy failed: ${e.message}")
|
||||||
|
e.printStackTrace()
|
||||||
getUnstableSpaceHierarchy()
|
getUnstableSpaceHierarchy()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue