All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsoftware.log.Log Maven / Gradle / Ivy

package org.jsoftware.log;

/**
 * DbPatch logger
 * @author szalik
 */
public interface Log {
	
	void debug(String msg);
	
	void info(String msg);
	
	void warn(String msg);

	void fatal(String msg);

	void warn(String msg, Throwable e);
	
	void fatal(String msg, Throwable e);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy