From 01fb30aa471c69fd4403cf8d5278d2b71ec9bbf8 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Fri, 29 May 2026 17:15:51 +0300 Subject: [PATCH] Do not log restored contacts --- app/src/main/kotlin/com/tutpro/baresip/Contact.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/Contact.kt b/app/src/main/kotlin/com/tutpro/baresip/Contact.kt index 99e8a638..b3c83bcd 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/Contact.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/Contact.kt @@ -266,7 +266,7 @@ sealed class Contact { else baseId + contactNo val favorite = Utils.paramValue(params, "favorite" ) == "yes" - Log.d(TAG, "Restoring contact $name, $urisPart, $color, $id") + // Log.d(TAG, "Restoring contact $name, $urisPart, $color, $id") val contact = BaresipContact(name, uris, email, color, id, favorite) val avatarFilePath = BaresipService.filesPath + "/$id.png" if (File(avatarFilePath).exists()) {