Error logging

This commit is contained in:
M66B 2023-12-09 08:59:48 +01:00
parent fd0676d286
commit 84cd61453b
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ public class AdapterOperation extends RecyclerView.Adapter<AdapterOperation.View
if (jarray.length() > 0)
sb.append(' ').append(operation.args);
} catch (JSONException ex) {
sb.append(' ').append(ex.toString());
Log.e(ex);
}
String folderName =

View File

@ -1742,7 +1742,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
for (String key : sSystemFontMap.keySet())
ssb.append(key).append("\n");
} catch (Throwable ex) {
ssb.append(ex.toString());
Log.e(ex);
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {