import android.util.Log;
/**
* 主要功能: 系统日志输出工具类
*@author caijin
*/
public class AppLogMessageMgr{
//是否输出
private static boolean isDebug = true;
/*
* 设置debug模式(true:打印日志 false:不打印)
*/
public static void isEnableDebug(boolean isDebug){
AppLogMessageMgr.isDebug = isDebug;
}
/**
*
* @param tag
* @param msg
*/
public static void i(String tag,String msg){
if(isDebug){
Log.i(tag, msg != null ? msg : "");
}
}
/**
*
* @param tag
* @param msg
*/
public static void d(String tag,String msg){
if(isDebug){
Log.d(tag, msg != null ? msg : "");
}
}
/**
*
* @param tag
* @param msg
*/
public static void w(String tag,String msg){
if(isDebug){
Log.w(tag, msg != null ? msg : "");
}
}
/**
*
* @param tag
* @param msg
*/
public static void e(String tag,String msg){
if(isDebug){
Log.e(tag, msg !=null ? msg : "");
}
}
/**
*
* @param tag
* @param msg
*/
public static void v(String tag, String msg){
if(isDebug){
Log.v(tag, msg != null ? msg : "");
}
}
}
最后附上所有工具类的下载链接:
http://download.csdn.net/detail/u014727709/9697759
转载自:http://blog.csdn.net/u014727709/article/details/53389921
欢迎start,欢迎评论,欢迎指正