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

org.jetlinks.rule.engine.api.Logger Maven / Gradle / Ivy

The newest version!
package org.jetlinks.rule.engine.api;

/**
 * @author zhouhao
 * @since 1.0.0
 */
public interface Logger {

    default void trace(String text, Object... args) {
    }

    void info(String message, Object... args);

    void debug(String message, Object... args);

    void warn(String message, Object... args);

    void error(String message, Object... args);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy