hu.blackbelt.flutter.maven.plugin.MavenLog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flutter-maven-plugin
Show all versions of flutter-maven-plugin
Flutter Maven plugin. It can run to flutter tasks
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