*/
@Override
public List<PcrLogReport> getFailureReportData(String hostName,ApiClient attestationService) throws Exception {
log.info("DemoPortalServicesImpl.getFailureReportData >>");
AttestationReport report;
try {
report = attestationService.getAttestationReport(new Hostname(hostName));
} catch (Exception e) {
log.error(e.getMessage());
throw ConnectionUtil.handleException(e);
}
return report.getPcrLogs();
}