mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-29 17:11:12 +01:00
Reduce error reporting
This commit is contained in:
@@ -80,6 +80,10 @@ public class Log {
|
||||
return android.util.Log.e(TAG, msg);
|
||||
}
|
||||
|
||||
public static int i(Throwable ex) {
|
||||
return android.util.Log.w(TAG, ex + "\n" + android.util.Log.getStackTraceString(ex));
|
||||
}
|
||||
|
||||
public static int w(Throwable ex) {
|
||||
Bugsnag.notify(ex, Severity.INFO);
|
||||
return android.util.Log.w(TAG, ex + "\n" + android.util.Log.getStackTraceString(ex));
|
||||
|
||||
Reference in New Issue
Block a user