Mercurial Hosting > luan
view src/goodjava/logger/LoggingFactory.java @ 1938:bd00b36380d9 default tip
ai options
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 16 May 2025 17:20:29 -0600 |
parents | 28b1ddacfad3 |
children |
line wrap: on
line source
package goodjava.logger; import goodjava.logging.ILoggerFactory; import goodjava.logging.Logger; public final class LoggingFactory implements ILoggerFactory { @Override public Logger getLogger(String name) { return GoodLoggerFactory.getLogger(name); } }