}
private void logOverallTrustStatus(TblHosts host, String response) {
Date today = new Date(System.currentTimeMillis());
TblTaLog taLog = new TblTaLog();
taLog.setHostID(host.getId());
taLog.setMleId(0);
taLog.setTrustStatus(false);
taLog.setError(response);
taLog.setManifestName(" ");
taLog.setManifestValue(" ");
taLog.setUpdatedOn(today);
new TblTaLogJpaController(getEntityManagerFactory()).create(taLog);
}