From 0860a195815384676c531a7dd0eb4f48f6e63b3b Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Thu, 19 Mar 2020 09:02:11 +0200 Subject: [PATCH] - Added debug message when accounts are saved to file. --- app/src/main/kotlin/com/tutpro/baresip/AccountsActivity.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/kotlin/com/tutpro/baresip/AccountsActivity.kt b/app/src/main/kotlin/com/tutpro/baresip/AccountsActivity.kt index c407c6ab..9cb2dae8 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/AccountsActivity.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/AccountsActivity.kt @@ -120,6 +120,7 @@ class AccountsActivity : AppCompatActivity() { var accounts = "" for (a in Account.accounts()) accounts = accounts + a.print() + "\n" Utils.putFileContents(BaresipService.filesPath + "/accounts", accounts.toByteArray()) + Log.d("Baresip", "Saved accounts to '${BaresipService.filesPath}/accounts'") // Log.d("Baresip", "Saved accounts '${accounts}' to '${BaresipService.filesPath}/accounts'") }