Home | History | Annotate | Download | only in logger

Lines Matching refs:msg

67      * @param msg      The actual message to be logged.
72 public static void println(int priority, String tag, String msg, Throwable tr) {
74 mLogNode.println(priority, tag, msg, tr);
84 * @param msg The actual message to be logged. The actual message to be logged.
86 public static void println(int priority, String tag, String msg) {
87 println(priority, tag, msg, null);
94 * @param msg The actual message to be logged.
98 public static void v(String tag, String msg, Throwable tr) {
99 println(VERBOSE, tag, msg, tr);
106 * @param msg The actual message to be logged.
108 public static void v(String tag, String msg) {
109 v(tag, msg, null);
117 * @param msg The actual message to be logged.
121 public static void d(String tag, String msg, Throwable tr) {
122 println(DEBUG, tag, msg, tr);
129 * @param msg The actual message to be logged.
131 public static void d(String tag, String msg) {
132 d(tag, msg, null);
139 * @param msg The actual message to be logged.
143 public static void i(String tag, String msg, Throwable tr) {
144 println(INFO, tag, msg, tr);
151 * @param msg The actual message to be logged.
153 public static void i(String tag, String msg) {
154 i(tag, msg, null);
161 * @param msg The actual message to be logged.
165 public static void w(String tag, String msg, Throwable tr) {
166 println(WARN, tag, msg, tr);
173 * @param msg The actual message to be logged.
175 public static void w(String tag, String msg) {
176 w(tag, msg, null);
194 * @param msg The actual message to be logged.
198 public static void e(String tag, String msg, Throwable tr) {
199 println(ERROR, tag, msg, tr);
206 * @param msg The actual message to be logged.
208 public static void e(String tag, String msg) {
209 e(tag, msg, null);
216 * @param msg The actual message to be logged.
220 public static void wtf(String tag, String msg, Throwable tr) {
221 println(ASSERT, tag, msg, tr);
228 * @param msg The actual message to be logged.
230 public static void wtf(String tag, String msg) {
231 wtf(tag, msg, null);