Package com.airbnb.lottie.utils
Class LogcatLogger
- java.lang.Object
-
- com.airbnb.lottie.utils.LogcatLogger
-
- All Implemented Interfaces:
LottieLogger
public class LogcatLogger extends java.lang.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(java.lang.String message)voiddebug(java.lang.String message, java.lang.Throwable exception)voiderror(java.lang.String message, java.lang.Throwable exception)voidwarning(java.lang.String message)voidwarning(java.lang.String message, java.lang.Throwable exception)
-
-
-
Method Detail
-
debug
public void debug(java.lang.String message)
- Specified by:
debugin interfaceLottieLogger
-
debug
public void debug(java.lang.String message, java.lang.Throwable exception)- Specified by:
debugin interfaceLottieLogger
-
warning
public void warning(java.lang.String message)
- Specified by:
warningin interfaceLottieLogger
-
warning
public void warning(java.lang.String message, java.lang.Throwable exception)- Specified by:
warningin interfaceLottieLogger
-
error
public void error(java.lang.String message, java.lang.Throwable exception)- Specified by:
errorin interfaceLottieLogger
-
-