Mercurial Hosting > luan
view src/goodjava/logging/LoggerFactory.java @ 1417:c7f9dd062eda
lucene cleanup
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Fri, 18 Oct 2019 19:38:08 -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); } }
