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

xsbti.Logger Maven / Gradle / Ivy

There is a newer version: 0.13.15
Show newest version
/* sbt -- Simple Build Tool
 * Copyright 2009  Mark Harrah
 */
package xsbti;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy