Example usage for Java android.util Log fields, constructors, methods, implement or subclass
The text is from its open source code.
int | VERBOSE Priority constant for the println method; use Log.v. |
int | DEBUG Priority constant for the println method; use Log.d. |
int | INFO Priority constant for the println method; use Log.i. |
int | WARN Priority constant for the println method; use Log.w. |
int | ERROR Priority constant for the println method; use Log.e. |
int | ASSERT Priority constant for the println method. |
int | d(String tag, String msg) Send a #DEBUG log message. |
int | d(String tag, String msg, Throwable tr) Send a #DEBUG log message and log the exception. |
int | e(String tag, String msg) Send an #ERROR log message. |
int | e(String tag, String msg, Throwable tr) Send a #ERROR log message and log the exception. |
String | getStackTraceString(Throwable tr) Handy function to get a loggable stack trace from a Throwable |
int | ic static int i(String tag, String msg) Send an #INFO log message. |
int | ic static int i(String tag, String msg, Throwable tr) Send a #INFO log message and log the exception. |
boolean | isLoggable(String tag, int level) Checks to see whether or not a log for the specified tag is loggable at the specified level. |
int | println(int priority, String tag, String msg) Low-level logging call. |
int | v(String tag, String msg) Send a #VERBOSE log message. |
int | v(String tag, String msg, Throwable tr) Send a #VERBOSE log message and log the exception. |
int | w(String tag, String msg) Send a #WARN log message. |
int | w(String tag, Throwable tr) |
int | w(String tag, String msg, Throwable tr) Send a #WARN log message and log the exception. |
int | wtf(String tag, String msg) What a Terrible Failure: Report a condition that should never happen. |
int | wtf(String tag, Throwable tr) What a Terrible Failure: Report an exception that should never happen. |
int | wtf(String tag, String msg, Throwable tr) What a Terrible Failure: Report an exception that should never happen. |