|
|
@ -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;
|
|
|
|