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 TypeMethodDescriptionvoid
Send aLog.DEBUG
log message.void
Send aLog.ERROR
log message.void
Send aLog.INFO
log message.void
Send aLog.VERBOSE
log message.void
Send aLog.WARN
log message.
-
Method Details
-
error
Send aLog.ERROR
log 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.WARN
log 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.DEBUG
log 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.INFO
log 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.VERBOSE
log 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.
-