Lines Matching refs:Log
18 import android.util.Log;
47 log(tag, Log.VERBOSE, null, messages); in v()
54 log(tag, Log.DEBUG, null, messages); in d()
59 log(tag, Log.INFO, null, messages); in i()
63 log(tag, Log.WARN, null, messages); in w()
67 log(tag, Log.WARN, t, messages); in w()
71 log(tag, Log.ERROR, null, messages); in e()
75 log(tag, Log.ERROR, t, messages); in e()
79 if (Log.isLoggable(tag, level)) { in log()
90 sb.append("\n").append(Log.getStackTraceString(t)); in log()
94 Log.println(level, tag, message); in log()