- Fixed possible crash when destroyed baresip app is started again

- Show notice when account to be created already exists
- Made level of log messages more consistent
This commit is contained in:
Juha Heinanen
2019-04-10 18:06:04 +03:00
parent ee026a53ed
commit 698c254a24
8 changed files with 41 additions and 36 deletions
@@ -58,7 +58,7 @@ class CallHistory(val aor: String, val peerURI: String, val direction: String,
oos.close()
fos.close()
} catch (e: IOException) {
Log.w("Baresip", "OutputStream exception: " + e.toString())
Log.e("Baresip", "OutputStream exception: " + e.toString())
e.printStackTrace()
}
}
@@ -73,7 +73,7 @@ class CallHistory(val aor: String, val peerURI: String, val direction: String,
ois.close()
fis.close()
} catch (e: Exception) {
Log.w("Baresip", "InputStream exception: - " + e.toString())
Log.e("Baresip", "InputStream exception: - " + e.toString())
}
}