Rabbit-R1/switch port/java/sources/com/airbnb/lottie/utils/Logger.java
2024-05-21 17:08:36 -04:00

32 lines
754 B
Java

package com.airbnb.lottie.utils;
import com.airbnb.lottie.LottieLogger;
/* loaded from: classes2.dex */
public class Logger {
private static LottieLogger INSTANCE = new LogcatLogger();
public static void setInstance(LottieLogger lottieLogger) {
INSTANCE = lottieLogger;
}
public static void debug(String str) {
INSTANCE.debug(str);
}
public static void debug(String str, Throwable th) {
INSTANCE.debug(str, th);
}
public static void warning(String str) {
INSTANCE.warning(str);
}
public static void warning(String str, Throwable th) {
INSTANCE.warning(str, th);
}
public static void error(String str, Throwable th) {
INSTANCE.error(str, th);
}
}