-
public interface LoggerDelegateInterface declaring methods that needs to be implemented for a Logger delegate. Works in a way very similar to android.util.Log.
-
-
Method Summary
Modifier and Type Method Description abstract voiderror(String tag, String msg, Throwable t)Send a ERROR log message. abstract voidwarn(String tag, String msg, Throwable t)Send a WARN log message. abstract voiddebug(String tag, String msg, Throwable t)Send a DEBUG log message. abstract voidinfo(String tag, String msg, Throwable t)Send a INFO log message. abstract voidverbose(String tag, String msg, Throwable t)Send a VERBOSE log message. -
-
Method Detail
-
error
abstract void error(String tag, String msg, Throwable t)
Send a ERROR log message.
- Parameters:
tag- Used to identify the source of a log message.msg- The message you would like logged.
-
warn
abstract void warn(String tag, String msg, Throwable t)
Send a WARN log message.
- Parameters:
tag- Used to identify the source of a log message.msg- The message you would like logged.
-
debug
abstract void debug(String tag, String msg, Throwable t)
Send a DEBUG log message.
- Parameters:
tag- Used to identify the source of a log message.msg- The message you would like logged.
-
info
abstract void info(String tag, String msg, Throwable t)
Send a INFO log message.
- Parameters:
tag- Used to identify the source of a log message.msg- The message you would like logged.
-
-
-
-