Debug logging

This commit is contained in:
M66B 2021-12-10 21:18:03 +01:00
parent b8a5b5dbf5
commit b53627b49b
1 changed files with 2 additions and 2 deletions

View File

@ -176,14 +176,14 @@ public class Log {
} }
public static int i(String msg) { public static int i(String msg) {
if (level <= android.util.Log.INFO) if (level <= android.util.Log.INFO || BuildConfig.DEBUG)
return android.util.Log.i(TAG, msg); return android.util.Log.i(TAG, msg);
else else
return 0; return 0;
} }
public static int i(String tag, String msg) { public static int i(String tag, String msg) {
if (level <= android.util.Log.INFO) if (level <= android.util.Log.INFO || BuildConfig.DEBUG)
return android.util.Log.i(tag, msg); return android.util.Log.i(tag, msg);
else else
return 0; return 0;