app/src/main/java/com/hdl/photovoltaic/other/HdlLogLogic.java
@@ -7,6 +7,12 @@ */ public class HdlLogLogic { /** * 是否需要打印(true不需要打印) */ public static boolean isDebug = false; private static volatile HdlLogLogic sHdlLogLogic; /** @@ -25,11 +31,28 @@ return sHdlLogLogic; } /** * android打印 * * @param tag 标签 * @param mgs 输出信息 */ public static void print(String tag, String mgs) { if (isDebug) { return; } Log.d(tag, mgs); } /** * java打印 * * @param mgs 输出信息 */ public static void print(String mgs) { if (isDebug) { return; } System.out.println(mgs); }