view src/goodjava/logger/LoggingFactory.java @ 2136:3ca8f933209d nginx_decoupled

Initial; use ~/.nginx-luan/ as nginx master conf dir instead of trying to detect the system default.
author Violet7
date Mon, 19 Jan 2026 19:47:11 -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);
	}
}