mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
14 lines
284 B
Java
14 lines
284 B
Java
package com.airbnb.lottie;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface LottieLogger {
|
|
void debug(String str);
|
|
|
|
void debug(String str, Throwable th);
|
|
|
|
void error(String str, Throwable th);
|
|
|
|
void warning(String str);
|
|
|
|
void warning(String str, Throwable th);
|
|
}
|