public interface LoggerDefinition
Modifier and Type | Method and Description |
---|---|
void |
d(java.lang.String tag,
java.lang.String msg)
Send a debug log message.
|
void |
d(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Send a debug log message and log the exception.
|
void |
e(java.lang.String tag,
java.lang.String msg)
Send an error log message.
|
void |
e(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Send an error log message and log the exception.
|
void |
i(java.lang.String tag,
java.lang.String msg)
Send an info log message.
|
void |
i(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Send an info log message and log the exception.
|
void |
v(java.lang.String tag,
java.lang.String msg)
Send a verbose log message.
|
void |
v(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Send a verbose log message and log the exception.
|
void |
w(java.lang.String tag,
java.lang.String msg)
Send a warning log message.
|
void |
w(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Send a warning log message and log the exception.
|
void v(java.lang.String tag, java.lang.String msg)
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.void v(java.lang.String tag, java.lang.String msg, java.lang.Throwable tr)
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.tr
- An exception to logvoid d(java.lang.String tag, java.lang.String msg)
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.void d(java.lang.String tag, java.lang.String msg, java.lang.Throwable tr)
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.tr
- An exception to logvoid i(java.lang.String tag, java.lang.String msg)
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.void i(java.lang.String tag, java.lang.String msg, java.lang.Throwable tr)
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.tr
- An exception to logvoid w(java.lang.String tag, java.lang.String msg)
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.void w(java.lang.String tag, java.lang.String msg, java.lang.Throwable tr)
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.tr
- An exception to logvoid e(java.lang.String tag, java.lang.String msg)
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.void e(java.lang.String tag, java.lang.String msg, java.lang.Throwable tr)
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.tr
- An exception to log