From b32f8b8eaaeb027c8aced9dac1fd8d9377f9bb11 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Thu, 24 Apr 2025 16:18:12 +0300 Subject: [PATCH] Fixed log tag --- app/src/main/kotlin/com/tutpro/baresip/InCallService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/InCallService.kt b/app/src/main/kotlin/com/tutpro/baresip/InCallService.kt index f88aa37f..b2cf4549 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/InCallService.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/InCallService.kt @@ -10,7 +10,7 @@ import android.os.IBinder class InCallService : Service() { override fun onBind(intent: Intent): IBinder? { // TODO("Return the communication channel to the service.") - Log.d(TAG, "InCallService onBind with intent: ${intent.action}") + Log.d("Baresip", "InCallService onBind with intent: ${intent.action}") return null } } \ No newline at end of file