Fixed log tag

This commit is contained in:
Juha Heinanen
2025-04-24 16:18:12 +03:00
parent 8f7ddf81ca
commit b32f8b8eaa

View File

@ -10,7 +10,7 @@ import android.os.IBinder
class InCallService : Service() { class InCallService : Service() {
override fun onBind(intent: Intent): IBinder? { override fun onBind(intent: Intent): IBinder? {
// TODO("Return the communication channel to the service.") // 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 return null
} }
} }