what-the-bank/sources/com/airbnb/lottie/utils/Logger.java

33 lines
753 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.airbnb.lottie.utils;
import com.airbnb.lottie.LottieLogger;
/* loaded from: classes.dex */
public class Logger {
private static LottieLogger INSTANCE = new LogcatLogger();
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);
}
public static void setInstance(LottieLogger lottieLogger) {
INSTANCE = lottieLogger;
}
}