Skip to content

Commit 8fdf3fa

Browse files
committed
removing unnecessary logging
1 parent 5b24c21 commit 8fdf3fa

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

dojo/tools/pip_audit/parser.py

-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
"""Parser for pip-audit."""
22
import json
3-
import logging
43

54
from dojo.models import Finding
65

7-
logger = logging.getLogger(__name__)
8-
96

107
class PipAuditParser:
118
"""Represents a file parser capable of ingesting pip-audit results."""
@@ -45,8 +42,6 @@ def get_file_findings(data, test):
4542
"""Return the findings in the vluns array inside the dependencies key."""
4643
findings = list()
4744
for dependency in data["dependencies"]:
48-
logger.debug("**-**")
49-
logger.debug(dependency)
5045
item_findings = get_item_findings(dependency, test)
5146
if item_findings is not None:
5247
findings.extend(item_findings)

0 commit comments

Comments
 (0)