Lines Matching refs:tag

63      * @param tag Used to identify the source of a log message.  It usually identifies
67 public static int v(String tag, String msg) {
68 return println(LOG_ID_MAIN, VERBOSE, tag, msg);
73 * @param tag Used to identify the source of a log message. It usually identifies
78 public static int v(String tag, String msg, Throwable tr) {
79 return println(LOG_ID_MAIN, VERBOSE, tag, msg + '\n' + getStackTraceString(tr));
84 * @param tag Used to identify the source of a log message. It usually identifies
88 public static int d(String tag, String msg) {
89 return println(LOG_ID_MAIN, DEBUG, tag, msg);
94 * @param tag Used to identify the source of a log message. It usually identifies
99 public static int d(String tag, String msg, Throwable tr) {
100 return println(LOG_ID_MAIN, DEBUG, tag, msg + '\n' + getStackTraceString(tr));
105 * @param tag Used to identify the source of a log message. It usually identifies
109 public static int i(String tag, String msg) {
110 return println(LOG_ID_MAIN, INFO, tag, msg);
115 * @param tag Used to identify the source of a log message. It usually identifies
120 public static int i(String tag, String msg, Throwable tr) {
121 return println(LOG_ID_MAIN, INFO, tag, msg + '\n' + getStackTraceString(tr));
126 * @param tag Used to identify the source of a log message. It usually identifies
130 public static int w(String tag, String msg) {
131 return println(LOG_ID_MAIN, WARN, tag, msg);
136 * @param tag Used to identify the source of a log message. It usually identifies
141 public static int w(String tag, String msg, Throwable tr) {
142 return println(LOG_ID_MAIN, WARN, tag, msg + '\n' + getStackTraceString(tr));
147 * @param tag Used to identify the source of a log message. It usually identifies
151 public static int w(String tag, Throwable tr) {
152 return println(LOG_ID_MAIN, WARN, tag, getStackTraceString(tr));
157 * @param tag Used to identify the source of a log message. It usually identifies
161 public static int e(String tag, String msg) {
162 return println(LOG_ID_MAIN, ERROR, tag, msg);
167 * @param tag Used to identify the source of a log message. It usually identifies
172 public static int e(String tag, String msg, Throwable tr) {
173 return println(LOG_ID_MAIN, ERROR, tag, msg + '\n' + getStackTraceString(tr));
205 * @param tag Used to identify the source of a log message. It usually identifies
210 public static int println(int priority, String tag, String msg) {
211 return println(LOG_ID_MAIN, priority, tag, msg);
222 int priority, String tag, String msg) {