List of utility methods to do Log
void | logE(String log) log E if (DEBUG) {
Log.e(sTAG, log);
|
void | logE(String log, Throwable tr) log E if (DEBUG) {
Log.e(sTAG, log, tr);
|
void | logW(String log) log W if (DEBUG) {
Log.w(sTAG, log);
|
void | logW(String log, Throwable tr) log W if (DEBUG) {
Log.w(sTAG, log, tr);
|
void | Log(String msg) Log android.util.Log.i("com.android.campusdishclient", msg);
|
void | Log(int msg) Log android.util.Log.i("com.android.campusdishclient",
String.valueOf(msg));
|
void | Log(String msg1, int msg) Log android.util.Log.i("com.android.campusdishclient",
msg1 + String.valueOf(msg));
|
void | logd(String msg) logd if (!debug) { return; Log.d("ldx", "" + msg); |
void | loge(String msg) loge if (!debug) { return; Log.e("ldx", "" + msg); |
void | logi(String msg) logi if (!debug) { return; Log.i("ldx", "" + msg); |