We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4059743 commit 85f17b4Copy full SHA for 85f17b4
sysbridge/src/main/java/io/github/sds100/keymapper/sysbridge/manager/SystemBridgeConnectionManager.kt
@@ -73,7 +73,11 @@ class SystemBridgeConnectionManagerImpl @Inject constructor(
73
74
private val deathRecipient: DeathRecipient = DeathRecipient {
75
synchronized(systemBridgeLock) {
76
- Timber.e("System Bridge has died")
+ if (isExpectedDeath) {
77
+ Timber.w("System bridge killed by user.")
78
+ } else {
79
+ Timber.e("System Bridge has died")
80
+ }
81
82
systemBridgeFlow.update { null }
83
0 commit comments