Lines Matching refs:Log
18 import android.util.Log;
21 * Helper class which wraps Android's native Log utility in the Logger interface. This way
26 // For piping: The next node to receive Log data after this one has done its work.
44 * Prints data out to the console using Android's native log mechanism.
46 * @param priority Log level of the data being logged. Verbose, Error, etc.
47 * @param tag Tag for for the log data. Can be used to organize log statements.
55 // There actually are log methods that don't take a msg parameter. For now,
65 msg += "\n" + Log.getStackTraceString(tr);
68 // This is functionally identical to Log.x(tag, useMsg);
69 // For instance, if priority were Log.VERBOSE, this would be the same as Log.v(tag, useMsg)
70 Log.println(priority, tag, useMsg);