1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-18 21:28:54 +00:00

Fixed log level

This commit is contained in:
M66B 2019-06-09 15:51:24 +02:00
parent 5ffd56869a
commit 29728faaa9

View file

@ -81,7 +81,7 @@ public class Log {
}
public static int i(Throwable ex) {
return android.util.Log.w(TAG, ex + "\n" + android.util.Log.getStackTraceString(ex));
return android.util.Log.i(TAG, ex + "\n" + android.util.Log.getStackTraceString(ex));
}
public static int w(Throwable ex) {