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

org.etlunit.TestLogger Maven / Gradle / Ivy

package org.etlunit;

import java.io.File;
import java.io.IOException;

public interface TestLogger
{
	void debug(String msg);

	void log(String msg);

	void info(String msg);

	void severe(String msg);

	void severe(Exception exc);

	void severe(String msg, Exception exc);

	void close();

	void outputToFile(File file) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy