File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1141,19 +1141,19 @@ def main(argv=None):
11411141 for scan_info in version_scanner .recursive_scan (args ["directory" ]):
11421142 if scan_info :
11431143 product_info , path = scan_info
1144- LOGGER .info (f"Product Info: { product_info } , Path: { path } " )
1144+ LOGGER .debug (f"Product Info: { product_info } , Path: { path } " )
11451145 # add product_info to parsed_data to check for with vex file
11461146 if product_info in parsed_data :
11471147 # update the paths in triage_data with the new path
11481148 triage_data = parsed_data [product_info ]
1149- LOGGER .info ("Product info in parsed data" )
1150- LOGGER .info (f"Triage Data: { triage_data } " )
1149+ LOGGER .debug ("Product info in parsed data" )
1150+ LOGGER .debug (f"Triage Data: { triage_data } " )
11511151 triage_data ["paths" ].add (path )
11521152 else :
11531153 # create a new entry if product_info not in parsed_data
1154- LOGGER .info ("Product info not in parsed data" )
1154+ LOGGER .debug ("Product info not in parsed data" )
11551155 triage_data = {"default" : {}, "paths" : {path }}
1156- LOGGER .info (f"Triage Data: { triage_data } " )
1156+ LOGGER .debug (f"Triage Data: { triage_data } " )
11571157 parsed_data [product_info ] = triage_data
11581158
11591159 cve_scanner .get_cves (product_info , triage_data )
You can’t perform that action at this time.
0 commit comments