Suppress interface gone exceptions

This commit is contained in:
Mygod
2021-05-19 12:44:21 -04:00
parent 1179bc9563
commit 2c89444c63
2 changed files with 4 additions and 3 deletions

View File

@@ -97,7 +97,7 @@ abstract class RoutingManager(private val caller: Any, val downstream: String, p
true
} catch (e: Exception) {
when (e) {
is Routing.InterfaceNotFoundException -> Timber.i(e)
is Routing.InterfaceNotFoundException -> Timber.d(e)
!is CancellationException -> Timber.w(e)
}
SmartSnackbar.make(e).show()