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

xsbti.Logger Maven / Gradle / Ivy

The newest version!
/* sbt -- Simple Build Tool
 * Copyright 2009  Mark Harrah
 */
package xsbti;

public interface Logger
{
	void error(F0 msg);
	void warn(F0 msg);
	void info(F0 msg);
	void debug(F0 msg);
	void trace(F0 exception);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy