Home | History | Annotate | Download | only in example.android.common.logger

Lines Matching refs:msg

61      * @param msg      The actual message to be logged.
66 public static void println(int priority, String tag, String msg, Throwable tr) {
68 mLogNode.println(priority, tag, msg, tr);
78 * @param msg The actual message to be logged. The actual message to be logged.
80 public static void println(int priority, String tag, String msg) {
81 println(priority, tag, msg, null);
88 * @param msg The actual message to be logged.
92 public static void v(String tag, String msg, Throwable tr) {
93 println(VERBOSE, tag, msg, tr);
100 * @param msg The actual message to be logged.
102 public static void v(String tag, String msg) {
103 v(tag, msg, null);
111 * @param msg The actual message to be logged.
115 public static void d(String tag, String msg, Throwable tr) {
116 println(DEBUG, tag, msg, tr);
123 * @param msg The actual message to be logged.
125 public static void d(String tag, String msg) {
126 d(tag, msg, null);
133 * @param msg The actual message to be logged.
137 public static void i(String tag, String msg, Throwable tr) {
138 println(INFO, tag, msg, tr);
145 * @param msg The actual message to be logged.
147 public static void i(String tag, String msg) {
148 i(tag, msg, null);
155 * @param msg The actual message to be logged.
159 public static void w(String tag, String msg, Throwable tr) {
160 println(WARN, tag, msg, tr);
167 * @param msg The actual message to be logged.
169 public static void w(String tag, String msg) {
170 w(tag, msg, null);
188 * @param msg The actual message to be logged.
192 public static void e(String tag, String msg, Throwable tr) {
193 println(ERROR, tag, msg, tr);
200 * @param msg The actual message to be logged.
202 public static void e(String tag, String msg) {
203 e(tag, msg, null);
210 * @param msg The actual message to be logged.
214 public static void wtf(String tag, String msg, Throwable tr) {
215 println(ASSERT, tag, msg, tr);
222 * @param msg The actual message to be logged.
224 public static void wtf(String tag, String msg) {
225 wtf(tag, msg, null);