鸿蒙中Log打印 原创

飞中缘a
发布于 2021-3-18 15:40
浏览
3收藏

public class LogUtil {
    private static final int DOMAIN = 0x001;

    public static void info(String tag,String format,Object... objects){
        HiLogLabel logLabel = new HiLogLabel(HiLog.LOG_APP,DOMAIN,tag);
        HiLog.info(logLabel,format,objects);
    }

    public static void debug(String tag,String format,Object... objects){
        HiLogLabel logLabel = new HiLogLabel(HiLog.LOG_APP,DOMAIN,tag);
        HiLog.debug(logLabel,format,objects);
    }

    public static void error(String tag, String format, Object... objects){
        HiLogLabel logLabel = new HiLogLabel(HiLog.LOG_APP,DOMAIN,tag);
        HiLog.error(logLabel,format,objects);
    }

    public static void warn(String tag,String format,Object... objects){
        HiLogLabel logLabel = new HiLogLabel(HiLog.LOG_APP,DOMAIN,tag);
        HiLog.warn(logLabel,format,objects);
    }
    public static void fatal(String tag,String format,Object... objects){
        HiLogLabel logLabel = new HiLogLabel(HiLog.LOG_APP,DOMAIN,tag);
        HiLog.fatal(logLabel,format,objects);
    }
}

 

直接导入使用

©著作权归作者所有,如需转载,请注明出处,否则将追究法律责任
标签
4
收藏 3
回复
举报
2条回复
按时间正序
/
按时间倒序
有意思的少年
有意思的少年

收藏get

回复
2021-8-10 14:11:49
XY道衍
XY道衍

已收藏

回复
2021-8-11 09:46:14
回复
    相关推荐