use of com.synopsys.integration.detect.workflow.report.ConfigurationReporter in project synopsys-detect by blackducksoftware.
the class DiagnosticReportHandler method configurationsReport.
public void configurationsReport(DetectInfo detectInfo, PropertyConfiguration propertyConfiguration, SortedMap<String, String> maskedRawPropertyValues) {
try {
ReportWriter profileWriter = getReportWriter(ReportTypes.CONFIGURATION);
ConfigurationReporter reporter = new ConfigurationReporter();
reporter.writeReport(profileWriter, detectInfo, propertyConfiguration, maskedRawPropertyValues);
} catch (Exception e) {
logger.error("Failed to write profiling report.", e);
}
}
use of com.synopsys.integration.detect.workflow.report.ConfigurationReporter in project synopsys-detect by blackducksoftware.
the class DiagnosticReportHandler method configurationsReport.
public void configurationsReport(DetectInfo detectInfo, PropertyConfiguration propertyConfiguration, SortedMap<String, String> maskedRawPropertyValues, Set<String> propertyKeys) {
try {
ReportWriter profileWriter = getReportWriter(ReportTypes.CONFIGURATION);
ConfigurationReporter reporter = new ConfigurationReporter();
reporter.writeReport(profileWriter, detectInfo, propertyConfiguration, maskedRawPropertyValues, propertyKeys);
} catch (Exception e) {
logger.error("Failed to write profiling report.", e);
}
}
Aggregations