Fixed log level

This commit is contained in:
M66B 2019-06-09 15:51:24 +02:00
parent 5ffd56869a
commit 29728faaa9
1 changed files with 1 additions and 1 deletions

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) {