Skip to content

Commit ca5ced8

Browse files
fix: Correct logging output for python parser (#2449)
1 parent 5ad2591 commit ca5ced8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cve_bin_tool/parsers/python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def find_vendor(self, product, version):
4949
if vendor_package_pair != []:
5050
vendor = vendor_package_pair[0]["vendor"]
5151
file_path = self.filename
52-
self.logger.info(f"{file_path} is {product} {version}")
52+
self.logger.debug(f"{file_path} is {product} {version}")
5353
return ScanInfo(ProductInfo(vendor, product, version), file_path)
5454
return None
5555

0 commit comments

Comments
 (0)