public interface Logger
Log| Modifier and Type | Method and Description |
|---|---|
int |
d(java.lang.String tag,
java.lang.String msg)
Send a
Log.DEBUG log message. |
int |
d(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Send a
Log.DEBUG log message and log the exception. |
int |
e(java.lang.String tag,
java.lang.String msg)
Send an
Log.ERROR log message. |
int |
e(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Send a
Log.ERROR log message and log the exception. |
int |
i(java.lang.String tag,
java.lang.String msg)
Send an
Log.INFO log message. |
int |
i(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Send a
Log.INFO log message and log the exception. |
int |
v(java.lang.String tag,
java.lang.String msg)
Send a
Log.VERBOSE log message. |
int |
v(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Send a
Log.VERBOSE log message and log the exception. |
int |
w(java.lang.String tag,
java.lang.String msg)
Send a
Log.WARN log message. |
int |
w(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Send a
Log.WARN log message and log the exception. |
int v(java.lang.String tag,
java.lang.String msg)
Log.VERBOSE log message.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.int v(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Log.VERBOSE log message and log the exception.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 logint d(java.lang.String tag,
java.lang.String msg)
Log.DEBUG log message.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.int d(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Log.DEBUG log message and log the exception.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 logint i(java.lang.String tag,
java.lang.String msg)
Log.INFO log message.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.int i(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Log.INFO log message and log the exception.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 logint w(java.lang.String tag,
java.lang.String msg)
Log.WARN log message.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.int w(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Log.WARN log message and log the exception.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 logint e(java.lang.String tag,
java.lang.String msg)
Log.ERROR log message.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.int e(java.lang.String tag,
java.lang.String msg,
java.lang.Throwable tr)
Log.ERROR log message and log the exception.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