
com.jk.logging.JKLoggerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jk-util Show documentation
Show all versions of jk-util Show documentation
This is utility classes used by my other projects.
package com.jk.logging;
import java.util.logging.Level;
import java.util.logging.Logger;
public class JKLoggerFactory {
private JKLoggerFactory(){
}
public static JKLogger getLogger(Class class1 ){
return new JKLogger(class1.getName());
}
public static void main(String[] args) {
JKLogger logger = JKLoggerFactory.getLogger(Integer.class);
logger.info("asdfads");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy