- Added debug message when accounts are saved to file.

This commit is contained in:
Juha Heinanen
2020-03-19 09:02:11 +02:00
parent dc9aa620f5
commit 0860a19581

View File

@ -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'")
}