view src/goodjava/logging/Logger.java @ 1448:6fc083e1d08c

start logger
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 23 Feb 2020 18:14:32 -0700
parents 27efb1fcbcb5
children 219f2b937f2b
line wrap: on
line source

package goodjava.logging;

// Because slf4j is an overcomplicated mess that caches loggers when it shouldn't.

public interface Logger {
	public void error(String msg);
	public void error(String msg,Throwable t);
	public void warn(String msg);
	public void warn(String msg,Throwable t);
	public void info(String msg);
	public void info(String msg,Throwable t);
	public boolean isInfoEnabled();
	public void debug(String msg);
	public void debug(String msg,Throwable t);
	public boolean isDebugEnabled();
}