ADD week 5
This commit is contained in:
24
02-Easy5/E5/sources/androidx/startup/StartupLogger.java
Normal file
24
02-Easy5/E5/sources/androidx/startup/StartupLogger.java
Normal file
@@ -0,0 +1,24 @@
|
||||
package androidx.startup;
|
||||
|
||||
import android.util.Log;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class StartupLogger {
|
||||
static final boolean DEBUG = false;
|
||||
private static final String TAG = "StartupLogger";
|
||||
|
||||
private StartupLogger() {
|
||||
}
|
||||
|
||||
public static void i(String str) {
|
||||
Log.i(TAG, str);
|
||||
}
|
||||
|
||||
public static void w(String str) {
|
||||
Log.w(TAG, str);
|
||||
}
|
||||
|
||||
public static void e(String str, Throwable th) {
|
||||
Log.e(TAG, str, th);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user