From 2e1662191016cd038567589d1f88612909c6f62d Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Wed, 23 May 2018 11:10:48 +0300 Subject: [PATCH] do not print accounts to log --- app/src/main/kotlin/com/tutpro/baresip/AccountsActivity.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/AccountsActivity.kt b/app/src/main/kotlin/com/tutpro/baresip/AccountsActivity.kt index 3fc79bec..c7d9c307 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/AccountsActivity.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/AccountsActivity.kt @@ -93,7 +93,7 @@ class AccountsActivity : AppCompatActivity() { for (a in Account.accounts()) accounts = accounts + a.print() + "\n" val path = MainActivity.filesPath + "/accounts" Utils.putFileContents(File(path), accounts) - Log.d("Baresip", "Saved accounts '${accounts}' to '$path") +// Log.d("Baresip", "Saved accounts '${accounts}' to '$path") } }