view src/goodjava/logging/ILoggerFactory.java @ 2141:c62dfd37545f nginx_decoupled

use regex trick to stop stop_nginx.sh from detecting itself
author Violet7
date Mon, 19 Jan 2026 20:56:48 -0800
parents 6fc083e1d08c
children
line wrap: on
line source

package goodjava.logging;


public interface ILoggerFactory {
	public Logger getLogger(String name);
}