Lines Matching refs:Log
23 /** Simple TextView which is used to output log data received through the LogNode interface.
40 * Formats the log data and prints it out to the LogView.
41 * @param priority Log level of the data being logged. Verbose, Error, etc.
42 * @param tag Tag for for the log data. Can be used to organize log statements.
55 case android.util.Log.VERBOSE:
58 case android.util.Log.DEBUG:
61 case android.util.Log.INFO:
64 case android.util.Log.WARN:
67 case android.util.Log.ERROR:
70 case android.util.Log.ASSERT:
77 // Handily, the Log class has a facility for converting a stack trace into a usable string.
80 exceptionStr = android.util.Log.getStackTraceString(tr);
139 /** Outputs the string as a new line of log data in the LogView. */