chore(metadata): Remove CheckName and CheckAlias field (#1299)

This commit is contained in:
Pepe Fagoaga
2022-08-03 10:12:34 +02:00
committed by GitHub
parent 9f82a8a6d6
commit dfbc618d44
26 changed files with 7 additions and 55 deletions

View File

@@ -192,9 +192,9 @@ def set_output_options(
def run_check(check, audit_info, output_options):
print(
f"\nCheck Name: {check.checkName} - {Fore.MAGENTA}{check.serviceName}{Fore.YELLOW} [{check.severity}]{Style.RESET_ALL}"
f"\nCheck ID: {check.checkID} - {Fore.MAGENTA}{check.serviceName}{Fore.YELLOW} [{check.severity}]{Style.RESET_ALL}"
)
logger.debug(f"Executing check: {check.checkName}")
logger.debug(f"Executing check: {check.checkID}")
findings = check.execute()
report(findings, output_options, audit_info)