Log unexpected errors

This commit is contained in:
M66B
2019-09-20 14:35:26 +02:00
parent 91dba221f6
commit 7b7b7a4189
6 changed files with 4 additions and 9 deletions

View File

@@ -465,7 +465,9 @@ public class Helper {
return sb.toString();
}
static void unexpectedError(FragmentManager manager, final Throwable ex) {
static void unexpectedError(FragmentManager manager, Throwable ex) {
Log.e(ex);
Bundle args = new Bundle();
args.putSerializable("ex", ex);