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

aQute.libg.log.Logger Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package aQute.libg.log;

import java.util.List;

public interface Logger {
	void error(String s, Object... args);

	void warning(String s, Object... args);

	void progress(String s, Object... args);

	List getWarnings();

	List getErrors();

	List getProgress();

	boolean isPedantic();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy