Skip to content

Commit

Permalink
chore: these are expected errors and we have no trouble recovering fr…
Browse files Browse the repository at this point in the history
…om them

so we do not need the full stack trace and they shouldn't be warn
  • Loading branch information
mikehardy committed Nov 29, 2024
1 parent 0ea48e7 commit 36851ed
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ class DatabaseErrorDialog : AsyncDialogFragment() {
try {
sqliteInstalled = Runtime.getRuntime().exec("sqlite3 --version").waitFor() == 0
} catch (e: IOException) {
Timber.w(e)
Timber.i("sqlite3 not installed: ${e.message}")
} catch (e: InterruptedException) {
Timber.w(e)
Timber.i("test for sqlite3 failed: ${e.message}")
}
return when (requireDialogType()) {
DIALOG_LOAD_FAILED -> {
Expand Down

0 comments on commit 36851ed

Please sign in to comment.