Package com.badlogic.gdx
Interface ApplicationLogger
-
public interface ApplicationLoggerThe ApplicationLogger provides an interface for a libGDX Application to log messages and exceptions. A default implementations is provided for each backend, custom implementations can be provided and set usingApplication.setApplicationLogger(ApplicationLogger)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddebug(java.lang.String tag, java.lang.String message)Logs a debug message with a tagvoiddebug(java.lang.String tag, java.lang.String message, java.lang.Throwable exception)Logs a debug message and exception with a tagvoiderror(java.lang.String tag, java.lang.String message)Logs an error message with a tagvoiderror(java.lang.String tag, java.lang.String message, java.lang.Throwable exception)Logs an error message and exception with a tagvoidlog(java.lang.String tag, java.lang.String message)Logs a message with a tagvoidlog(java.lang.String tag, java.lang.String message, java.lang.Throwable exception)Logs a message and exception with a tag
-
-
-
Method Detail
-
log
void log(java.lang.String tag, java.lang.String message)Logs a message with a tag
-
log
void log(java.lang.String tag, java.lang.String message, java.lang.Throwable exception)Logs a message and exception with a tag
-
error
void error(java.lang.String tag, java.lang.String message)Logs an error message with a tag
-
error
void error(java.lang.String tag, java.lang.String message, java.lang.Throwable exception)Logs an error message and exception with a tag
-
debug
void debug(java.lang.String tag, java.lang.String message)Logs a debug message with a tag
-
debug
void debug(java.lang.String tag, java.lang.String message, java.lang.Throwable exception)Logs a debug message and exception with a tag
-
-