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

io.github.common.logger.LoggerHandler Maven / Gradle / Ivy

package io.github.common.logger;

public interface LoggerHandler {

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

    void error(String msg, Object... args);

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

    void debug(String msg, Object... args);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy