All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pingbu.logger.LoggerImpl Maven / Gradle / Ivy

package pingbu.logger;

/**
 * 日志实现接口
 */
public interface LoggerImpl {
    /**
     * 打印调试信息
     *
     * @param tag  标签
     * @param info 信息文本
     */
    void d(String tag, String info);

    /**
     * 打印出错信息
     *
     * @param tag  标签
     * @param info 信息文本
     */
    void e(String tag, String info);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy