Home | History | Annotate | Download | only in logger

Lines Matching full:priority

58      * @param priority Log level of the data being logged. Verbose, Error, etc.
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
74 * @param priority Log level of the data being logged. Verbose, Error, etc.
78 public static void println(int priority, String tag, String msg) {
79 println(priority, tag, msg, null);
83 * Prints a message at VERBOSE priority.
95 * Prints a message at VERBOSE priority.
106 * Prints a message at DEBUG priority.
118 * Prints a message at DEBUG priority.
128 * Prints a message at INFO priority.
140 * Prints a message at INFO priority.
150 * Prints a message at WARN priority.
162 * Prints a message at WARN priority.
172 * Prints a message at WARN priority.
183 * Prints a message at ERROR priority.
195 * Prints a message at ERROR priority.
205 * Prints a message at ASSERT priority.
217 * Prints a message at ASSERT priority.
227 * Prints a message at ASSERT priority.