Android Utililty Methods Log

List of utility methods to do Log

Description

The list of methods to do Log are organized into topic(s).

Method

inte(String tag, String msg, Throwable tr)
e
return println(Log.ERROR, tag, msg + '\n' + getStackTraceString(tr));
intv(String tag, String msg)
v
return println(Log.VERBOSE, tag, msg);
intv(String tag, String msg, Throwable tr)
v
return println(Log.VERBOSE, tag, msg + '\n'
        + getStackTraceString(tr));
intw(String tag, String msg)
w
return println(Log.WARN, tag, msg);
intw(String tag, String msg, Throwable tr)
w
return println(Log.WARN, tag, msg + '\n' + getStackTraceString(tr));
intw(String tag, Throwable tr)
w
return println(Log.WARN, tag, getStackTraceString(tr));
intwtf(String tag, String msg)
wtf
return Log.wtf(tag, msg, null);
intwtf(String tag, Throwable tr)
wtf
return Log.wtf(tag, tr.getMessage(), tr);
intwtf(String tag, String msg, Throwable tr)
wtf
return Log.wtf(tag, msg, tr);
voidlog(String log)
log
if (DEBUG) {
    Log.d(sTAG, log);