Log info / test release

pull/213/head
M66B 2 years ago
parent ef307d1946
commit 532f23c1fa

@ -263,14 +263,14 @@ public class Log {
} }
public static int i(String msg) { public static int i(String msg) {
if (level <= android.util.Log.INFO || BuildConfig.DEBUG) if (level <= android.util.Log.INFO || BuildConfig.DEBUG || BuildConfig.TEST_RELEASE)
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 || BuildConfig.DEBUG) if (level <= android.util.Log.INFO || BuildConfig.DEBUG || BuildConfig.TEST_RELEASE)
return android.util.Log.i(tag, msg); return android.util.Log.i(tag, msg);
else else
return 0; return 0;

Loading…
Cancel
Save