From be2b9084cb7a09888686974d03b801f3ec1d8953 Mon Sep 17 00:00:00 2001 From: Fabian Wiesel Date: Fri, 1 Mar 2024 20:26:12 +0100 Subject: [PATCH] Missed to log the exception --- app/src/main/kotlin/de/rochefort/childmonitor/ListenService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/de/rochefort/childmonitor/ListenService.kt b/app/src/main/kotlin/de/rochefort/childmonitor/ListenService.kt index 43c8f1a..eda599a 100644 --- a/app/src/main/kotlin/de/rochefort/childmonitor/ListenService.kt +++ b/app/src/main/kotlin/de/rochefort/childmonitor/ListenService.kt @@ -197,7 +197,7 @@ class ListenService : Service() { } } } catch (e: IOException) { - Log.e(TAG, "Failed to read from socket due to ") + Log.e(TAG, "Failed to read from socket due to ", e) } }