Skip to content

Commit 3d2bf7f

Browse files
authored
fix: remove excessively noisy debug message (#4395)
This message was firing so frequently that it was making it difficult to debug another issue. As it didn't seem useful I've removed it rather than commenting it out. Signed-off-by: Terri Oda <[email protected]>
1 parent de0a312 commit 3d2bf7f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

cve_bin_tool/cvedb.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -643,9 +643,6 @@ def metric_finder(self, cursor, cve):
643643
metric = list(map(lambda x: x[0], cursor.fetchall()))
644644
# Since the query is expected to return a single result, extract the first item from the list and store it in 'metric'
645645
metric = metric[0]
646-
self.LOGGER.debug(
647-
f'For the given cve {cve["ID"]} the cvss version found {cve["CVSS_version"]} metrics ID added into database {metric}'
648-
)
649646
return metric
650647

651648
def clear_cached_data(self) -> None:

0 commit comments

Comments
 (0)