Lines Matching refs:Log
24 * Simple TextView which is used to output log data received through the LogNode interface.
41 * Formats the log data and prints it out to the LogView.
43 * @param priority Log level of the data being logged. Verbose, Error, etc.
44 * @param tag Tag for for the log data. Can be used to organize log statements.
57 case android.util.Log.VERBOSE:
60 case android.util.Log.DEBUG:
63 case android.util.Log.INFO:
66 case android.util.Log.WARN:
69 case android.util.Log.ERROR:
72 case android.util.Log.ASSERT:
79 // Handily, the Log class has a facility for converting a stack trace into a usable string.
82 exceptionStr = android.util.Log.getStackTraceString(tr);
143 /** Outputs the string as a new line of log data in the LogView. */