view src/goodjava/logging/ILoggerFactory.java @ 2137:67b504ba388c nginx_decoupled

don't assume the user's primary group name is the same as their username
author Violet7
date Mon, 19 Jan 2026 20:20:03 -0800
parents 6fc083e1d08c
children
line wrap: on
line source

package goodjava.logging;


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