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

com.bazaarvoice.maven.plugin.s3repo.util.LogStreamConsumer Maven / Gradle / Ivy

There is a newer version: 3.7
Show newest version
package com.bazaarvoice.maven.plugin.s3repo.util;

import org.apache.maven.plugin.logging.Log;
import org.codehaus.plexus.util.cli.StreamConsumer;

/**
 * Simply logs the stream output as a warning
 */
public final class LogStreamConsumer implements StreamConsumer {

    private final Log _log;

    public LogStreamConsumer(Log log) {
        _log = log;
    }

    @Override
    public void consumeLine(String line) {
        _log.warn(line);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy