List of utility methods to do Log
int | debug(String msg) debug return debug(DEBUG_TAG, msg);
|
int | debug(String tag, String msg) debug if (DEBUG_DEVELOPER_MODE) { return Log.d(tag, msg); } else { return 0; |
void | log(String TAG, String msg) log log(TAG, msg, 3, null); |
void | log(String TAG, String msg, int type, Exception e) log if (msg != null && !msg.equals("")) { if (debugMode) { if (TAG == null) { switch (type) { case 1: android.util.Log.v(TAG, msg); break; ... |
void | log(String msg) This method allows you to output debug messages only when debugging is on. log(null, msg, 3, null); |
void | log(String msg, Exception e) log log(null, msg, 3, e); |
void | log(String msg, int type, Exception e) log log(null, msg, type, e); |
int | d(String tag, String msg) d return println(Log.DEBUG, tag, msg);
|
int | d(String tag, String msg, Throwable tr) d return println(Log.DEBUG, tag, msg + '\n' + getStackTraceString(tr)); |
int | e(String tag, String msg) e return println(Log.ERROR, tag, msg);
|