1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-03 13:44:40 +00:00

Debug logging

This commit is contained in:
M66B 2021-12-10 21:18:03 +01:00
parent b8a5b5dbf5
commit b53627b49b

View file

@ -176,14 +176,14 @@ public class Log {
}
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);
else
return 0;
}
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);
else
return 0;