Added error logging

This commit is contained in:
M66B
2018-12-24 12:41:38 +00:00
parent 351ae13234
commit 5930e5e561
3 changed files with 3 additions and 0 deletions

View File

@@ -135,6 +135,7 @@ public class Helper {
} catch (ActivityNotFoundException ex) {
Toast.makeText(context, context.getString(R.string.title_no_viewer, uri.toString()), Toast.LENGTH_LONG).show();
} catch (Throwable ex) {
Log.e(ex);
Helper.unexpectedError(context, owner, ex);
}
}