Mercurial Hosting > luan
view src/goodjava/logger/LoggingFactory.java @ 2111:2a0da93eb0f4 ssltesting
nginx conf relative path fix
| author | Violet7 |
|---|---|
| date | Fri, 19 Dec 2025 02:02:17 -0800 |
| 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); } }
