Home | History | Annotate | Download | only in logging

Lines Matching defs:Log

19 import android.util.Log;
22 * Simplifies usage of Android logging class {@link Log} by abstracting the TAG field that is
24 * class name prefix to log outputs for better debugging.
27 * class name as a prefix to each log output. If you do not want the class name to be prefixed to
28 * log output then use {@link #getLogger()} to create the instance of Logger.
34 * Use this method if you want your class name to be prefixed to each log output.
41 * Use this factory method if you DO NOT want your class name to be prefixed into the log
50 /** No custom log prefix used. */
55 /** Use the supplied custom prefix in log output. */
69 Log.i(APP_TAG, getMsg(msg));
73 Log.i(APP_TAG, getMsg(msg), t);
77 Log.d(APP_TAG, getMsg(msg));
81 Log.d(APP_TAG, getMsg(msg), t);
85 Log.w(APP_TAG, getMsg(msg));
89 Log.w(APP_TAG, getMsg(msg), t);
93 Log.e(APP_TAG, getMsg(msg));
97 Log.e(APP_TAG, getMsg(msg), t);