Home | History | Annotate | Download | only in logger

Lines Matching defs: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.
45 * @param priority Log level of the data being logged. Verbose, Error, etc.
46 * @param tag Tag for for the log data. Can be used to organize log statements.
53 // There actually are log methods that don't take a msg parameter. For now,
63 msg += "\n" + Log.getStackTraceString(tr);
66 // This is functionally identical to Log.x(tag, useMsg);
67 // For instance, if priority were Log.VERBOSE, this would be the same as Log.v(tag, useMsg)
68 Log.println(priority, tag, useMsg);