Package com.airbnb.lottie.utils
Class LogcatLogger
- java.lang.Object
-
- com.airbnb.lottie.utils.LogcatLogger
-
- All Implemented Interfaces:
LottieLogger
public class LogcatLogger extends Object implements LottieLogger
Default logger. Warnings with same message will only be logged once.
-
-
Constructor Summary
Constructors Constructor Description LogcatLogger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddebug(String message)voiddebug(String message, Throwable exception)voiderror(String message, Throwable exception)voidwarning(String message)voidwarning(String message, Throwable exception)
-
-
-
Method Detail
-
debug
public void debug(String message)
- Specified by:
debugin interfaceLottieLogger
-
debug
public void debug(String message, Throwable exception)
- Specified by:
debugin interfaceLottieLogger
-
warning
public void warning(String message)
- Specified by:
warningin interfaceLottieLogger
-
warning
public void warning(String message, Throwable exception)
- Specified by:
warningin interfaceLottieLogger
-
error
public void error(String message, Throwable exception)
- Specified by:
errorin interfaceLottieLogger
-
-