Skip to content

Commit

Permalink
print the vulnerabilities-details
Browse files Browse the repository at this point in the history
  • Loading branch information
ipeleg committed Feb 28, 2024
1 parent 32be82e commit c53c64a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion checkov/common/sca/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@ def create_report_cve_record(
if severity == "moderate":
severity = "medium"
if severity.upper() not in Severities:
logging.warning(f"unknown severity - severity '{severity}' is unknown. using the DEFAULT_SEVERITY: '{DEFAULT_SEVERITY}' instead")
logging.warning(f"unknown severity - severity '{severity}' is unknown. using the DEFAULT_SEVERITY: '{DEFAULT_SEVERITY}' instead. "
f"vulnerabilities-details: {vulnerability_details}")
severity = DEFAULT_SEVERITY

description = vulnerability_details.get("description")
Expand Down

0 comments on commit c53c64a

Please sign in to comment.