Home | History | Annotate | Download | only in logger

Lines Matching refs:tr

61      * @param tr If an exception was thrown, this can be sent along for the logging facilities
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
87 * @param tr If an exception was thrown, this can be sent along for the logging facilities
90 public static void v(String tag, String msg, Throwable tr) {
91 println(VERBOSE, tag, msg, tr);
110 * @param tr If an exception was thrown, this can be sent along for the logging facilities
113 public static void d(String tag, String msg, Throwable tr) {
114 println(DEBUG, tag, msg, tr);
132 * @param tr If an exception was thrown, this can be sent along for the logging facilities
135 public static void i(String tag, String msg, Throwable tr) {
136 println(INFO, tag, msg, tr);
154 * @param tr If an exception was thrown, this can be sent along for the logging facilities
157 public static void w(String tag, String msg, Throwable tr) {
158 println(WARN, tag, msg, tr);
175 * @param tr If an exception was thrown, this can be sent along for the logging facilities
178 public static void w(String tag, Throwable tr) {
179 w(tag, null, tr);
187 * @param tr If an exception was thrown, this can be sent along for the logging facilities
190 public static void e(String tag, String msg, Throwable tr) {
191 println(ERROR, tag, msg, tr);
209 * @param tr If an exception was thrown, this can be sent along for the logging facilities
212 public static void wtf(String tag, String msg, Throwable tr) {
213 println(ASSERT, tag, msg, tr);
230 * @param tr If an exception was thrown, this can be sent along for the logging facilities
233 public static void wtf(String tag, Throwable tr) {
234 wtf(tag, null, tr);