Search in sources :

Example 1 with DetectConfigurationReporter

use of com.blackducksoftware.integration.hub.detect.workflow.report.DetectConfigurationReporter in project hub-detect by blackducksoftware.

the class BootManager method printConfiguration.

private void printConfiguration(boolean fullConfiguration, List<DetectOption> detectOptions) {
    DetectConfigurationReporter detectConfigurationReporter = new DetectConfigurationReporter();
    InfoLogReportWriter infoLogReportWriter = new InfoLogReportWriter();
    if (!fullConfiguration) {
        detectConfigurationReporter.print(infoLogReportWriter, detectOptions);
    }
    detectConfigurationReporter.printWarnings(infoLogReportWriter, detectOptions);
}
Also used : InfoLogReportWriter(com.blackducksoftware.integration.hub.detect.workflow.report.writer.InfoLogReportWriter) DetectConfigurationReporter(com.blackducksoftware.integration.hub.detect.workflow.report.DetectConfigurationReporter)

Aggregations

DetectConfigurationReporter (com.blackducksoftware.integration.hub.detect.workflow.report.DetectConfigurationReporter)1 InfoLogReportWriter (com.blackducksoftware.integration.hub.detect.workflow.report.writer.InfoLogReportWriter)1