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

io.github.uniclog.utils.JmLogger Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package io.github.uniclog.utils;

import org.apache.maven.plugin.logging.Log;

public interface JmLogger {
    Log getLogger();

    default void info(String log) {
        getLogger().info(log);
    }

    default void debug(String log) {
        getLogger().debug(log);
    }

    default void error(String log) {
        getLogger().error(log);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy