Package com.batch.android
Interface LoggerDelegate
public interface LoggerDelegate
Interface declaring methods that needs to be implemented for a Logger delegate.
Works in a way very similar to
Log.-
Method Summary
Modifier and TypeMethodDescriptionvoidSend aLog.DEBUGlog message.voidSend aLog.ERRORlog message.voidSend aLog.INFOlog message.voidSend aLog.VERBOSElog message.voidSend aLog.WARNlog message.
-
Method Details
-
error
Send aLog.ERRORlog message.- Parameters:
tag- Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.msg- The message you would like logged.
-
warn
Send aLog.WARNlog message.- Parameters:
tag- Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.msg- The message you would like logged.
-
debug
Send aLog.DEBUGlog message.- Parameters:
tag- Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.msg- The message you would like logged.
-
info
Send aLog.INFOlog message.- Parameters:
tag- Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.msg- The message you would like logged.
-
verbose
Send aLog.VERBOSElog message.- Parameters:
tag- Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.msg- The message you would like logged.
-