wjc
2023-06-28 975b91521a04e159f45fb34fc7b55afbf455f7f5
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;
    /**
@@ -26,10 +32,16 @@
    }
    public static void print(String tag, String mgs) {
        if (isDebug) {
            return;
        }
        Log.d(tag, mgs);
    }
    public static void print(String mgs) {
        if (isDebug) {
            return;
        }
        System.out.println(mgs);
    }