use of com.synopsys.integration.detect.workflow.report.ProfilingReporter in project synopsys-detect by blackducksoftware.
the class DiagnosticReportHandler method detectorsProfiled.
private void detectorsProfiled(DetectorTimings detectorTimings) {
try {
ReportWriter profileWriter = getReportWriter(ReportTypes.DETECTOR_PROFILE);
ProfilingReporter reporter = new ProfilingReporter();
reporter.writeReport(profileWriter, detectorTimings);
} catch (Exception e) {
logger.error("Failed to write profiling report.", e);
}
}
Aggregations