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

me.xethh.libs.toolkits.logging.WithLogger Maven / Gradle / Ivy

The newest version!
package me.xethh.libs.toolkits.logging;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public interface WithLogger {
    default Logger logger(){
        return LoggerFactory.getLogger(this.getClass());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy