Skip to content

Commit

Permalink
fix: remove debug logging (#6770)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Jul 2, 2024
1 parent 214bdd9 commit 8c731cd
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,6 @@ private int updateOrInsertVulnerability(DefCveItem cve, String description) {
optCvssv4 = cve.getCve().getMetrics().getCvssMetricV40().stream().sorted(Comparator.comparing(CvssV4::getType)).findFirst();
}
if (optCvssv4 != null && optCvssv4.isPresent()) {
LOGGER.error("Updating CVE: {}" , cve.getCve().getId());
CvssV4 cvssv4 = optCvssv4.get();
setUpdateColumn(callUpdate, 32, cvssv4.getCvssData().getVersion());
setUpdateColumn(callUpdate, 33, cvssv4.getCvssData().getAttackVector());
Expand Down

0 comments on commit 8c731cd

Please sign in to comment.