Mercurial Hosting > luan
view src/goodjava/logging/LoggerFactory.java @ 1419:59fd2e8b1b9d
stringify and json_string
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 25 Oct 2019 22:12:06 -0600 |
parents | 27efb1fcbcb5 |
children | 6fc083e1d08c |
line wrap: on
line source
package goodjava.logging; public abstract class LoggerFactory { public static LoggerFactory implementation = new Log4jFactory(); protected abstract Logger getLoggerImpl(Class cls); protected abstract Logger getLoggerImpl(String name); public static Logger getLogger(Class cls) { return implementation.getLoggerImpl(cls); } public static Logger getLogger(String name) { return implementation.getLoggerImpl(name); } }