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

hu.blackbelt.flutter.maven.plugin.MavenLog Maven / Gradle / Ivy

The newest version!
package hu.blackbelt.flutter.maven.plugin;

public class MavenLog implements Log {

	final org.apache.maven.plugin.logging.Log log;
	
	public MavenLog(org.apache.maven.plugin.logging.Log log) {
		this.log = log;
	}

	public void debug(CharSequence content) {
		log.debug(content);
	}

	public void debug(CharSequence content, Throwable error) {
		log.debug(content, error);
	}

	public void debug(Throwable error) {
		log.debug(error);
	}

	public void info(CharSequence content) {
		log.info(content);
	}

	public void info(CharSequence content, Throwable error) {
		log.info(content, error);
	}

	public void info(Throwable error) {
		log.info(error);
	}

	public void warn(CharSequence content) {
		log.warn(content);
	}

	public void warn(CharSequence content, Throwable error) {
		log.warn(content, error);
	}

	public void warn(Throwable error) {
		log.warn(error);
	}

	public void error(CharSequence content) {
		log.error(content);
	}

	public void error(CharSequence content, Throwable error) {
		log.error(content, error);
	}

	public void error(Throwable error) {
		log.error(error);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy