Home | History | Annotate | Download | only in logger

Lines Matching refs:msg

60      * @param msg The actual message to be logged.
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
76 * @param msg The actual message to be logged. The actual message to be logged.
78 public static void println(int priority, String tag, String msg) {
79 println(priority, tag, msg, null);
86 * @param msg The actual message to be logged.
90 public static void v(String tag, String msg, Throwable tr) {
91 println(VERBOSE, tag, msg, tr);
98 * @param msg The actual message to be logged.
100 public static void v(String tag, String msg) {
101 v(tag, msg, null);
109 * @param msg The actual message to be logged.
113 public static void d(String tag, String msg, Throwable tr) {
114 println(DEBUG, tag, msg, tr);
121 * @param msg The actual message to be logged.
123 public static void d(String tag, String msg) {
124 d(tag, msg, null);
131 * @param msg The actual message to be logged.
135 public static void i(String tag, String msg, Throwable tr) {
136 println(INFO, tag, msg, tr);
143 * @param msg The actual message to be logged.
145 public static void i(String tag, String msg) {
146 i(tag, msg, null);
153 * @param msg The actual message to be logged.
157 public static void w(String tag, String msg, Throwable tr) {
158 println(WARN, tag, msg, tr);
165 * @param msg The actual message to be logged.
167 public static void w(String tag, String msg) {
168 w(tag, msg, null);
186 * @param msg The actual message to be logged.
190 public static void e(String tag, String msg, Throwable tr) {
191 println(ERROR, tag, msg, tr);
198 * @param msg The actual message to be logged.
200 public static void e(String tag, String msg) {
201 e(tag, msg, null);
208 * @param msg The actual message to be logged.
212 public static void wtf(String tag, String msg, Throwable tr) {
213 println(ASSERT, tag, msg, tr);
220 * @param msg The actual message to be logged.
222 public static void wtf(String tag, String msg) {
223 wtf(tag, msg, null);