view src/goodjava/logging/LoggerFactory.java @ 1448:6fc083e1d08c

start logger
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 23 Feb 2020 18:14:32 -0700
parents 27efb1fcbcb5
children 219f2b937f2b
line wrap: on
line source

package goodjava.logging;


public final class LoggerFactory {
	public static final ILoggerFactory implementation;
	static {
		String s = System.getProperty("goodjava.logger","goodjava.logging.Log4jFactory");
		try {
			implementation = (ILoggerFactory)Class.forName(s).newInstance();
		} catch(ClassNotFoundException e) {
			throw new RuntimeException(e);
		} catch(InstantiationException e) {
			throw new RuntimeException(e);
		} catch(IllegalAccessException e) {
			throw new RuntimeException(e);
		}
	}

	public static Logger getLogger(String name) {
		return implementation.getLogger(name);
	}

	public static Logger getLogger(Class cls) {
		return getLogger(cls.getName());
	}
}