me.xethh.libs.toolkits.logging.WithLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
Library of common used tools - major focus on common tools
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());
}
}