60 lines
1.3 KiB
Java
60 lines
1.3 KiB
Java
package io.flutter;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class Log {
|
|
public static int ASSERT = 7;
|
|
public static int DEBUG = 3;
|
|
public static int ERROR = 6;
|
|
public static int INFO = 4;
|
|
public static int VERBOSE = 2;
|
|
public static int WARN = 5;
|
|
private static int logLevel = 3;
|
|
|
|
public static void d(String str, String str2) {
|
|
}
|
|
|
|
public static void d(String str, String str2, Throwable th) {
|
|
}
|
|
|
|
public static void e(String str, String str2) {
|
|
}
|
|
|
|
public static void e(String str, String str2, Throwable th) {
|
|
}
|
|
|
|
public static void i(String str, String str2) {
|
|
}
|
|
|
|
public static void i(String str, String str2, Throwable th) {
|
|
}
|
|
|
|
public static void println(int i, String str, String str2) {
|
|
}
|
|
|
|
public static void v(String str, String str2) {
|
|
}
|
|
|
|
public static void v(String str, String str2, Throwable th) {
|
|
}
|
|
|
|
public static void w(String str, String str2) {
|
|
}
|
|
|
|
public static void w(String str, String str2, Throwable th) {
|
|
}
|
|
|
|
public static void wtf(String str, String str2) {
|
|
}
|
|
|
|
public static void wtf(String str, String str2, Throwable th) {
|
|
}
|
|
|
|
public static String getStackTraceString(Throwable th) {
|
|
return android.util.Log.getStackTraceString(th);
|
|
}
|
|
|
|
public static void setLogLevel(int i) {
|
|
logLevel = i;
|
|
}
|
|
}
|