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