33 lines
867 B
Java
33 lines
867 B
Java
|
|
package com.tfq.library.utils;
|
||
|
|
|
||
|
|
import android.util.Log;
|
||
|
|
|
||
|
|
import com.tfq.library.app.BaseConstants;
|
||
|
|
|
||
|
|
public class LogK {
|
||
|
|
|
||
|
|
public static void d(String msg) {
|
||
|
|
if (BaseConstants.BASE_APP_DEBUG_PRINT)
|
||
|
|
Log.d("LogK", "LogK.d http data: " + msg);
|
||
|
|
}
|
||
|
|
|
||
|
|
public static void e(String msg) {
|
||
|
|
if (BaseConstants.BASE_APP_DEBUG_PRINT)
|
||
|
|
Log.e("LogK", "LogK.e http data: " + msg);
|
||
|
|
}
|
||
|
|
|
||
|
|
public static void i(String msg) {
|
||
|
|
if (BaseConstants.BASE_APP_DEBUG_PRINT)
|
||
|
|
Log.i("LogK", "LogK.i http data: " + msg);
|
||
|
|
}
|
||
|
|
|
||
|
|
public static void w(String msg) {
|
||
|
|
if (BaseConstants.BASE_APP_DEBUG_PRINT)
|
||
|
|
Log.w("LogK", "LogK.w http data: " + msg);
|
||
|
|
}
|
||
|
|
|
||
|
|
public static void v(String msg) {
|
||
|
|
if (BaseConstants.BASE_APP_DEBUG_PRINT)
|
||
|
|
Log.v("LogK", "LogK.v http data: " + msg);
|
||
|
|
}
|
||
|
|
}
|