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

sortpom.logger.MavenLogger Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package sortpom.logger;

import org.apache.maven.plugin.logging.Log;

/**
 * @author bjorn
 * @since 2012-12-22
 */
public class MavenLogger implements SortPomLogger {
    private final Log pluginLogger;

    public MavenLogger(Log pluginLogger) {
        this.pluginLogger = pluginLogger;
    }

    @Override
    public void warn(String content) {
        pluginLogger.warn(content);
    }

    @Override
    public void info(String content) {
        pluginLogger.info(content);
    }

    @Override
    public void error(String content) {
        pluginLogger.error(content);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy