15 lines
283 B
Java
15 lines
283 B
Java
|
package com.airbnb.lottie;
|
||
|
|
||
|
/* loaded from: classes.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);
|
||
|
}
|