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

com.jk.logging.JKLoggerFactory Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
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