Skip to content

Commit 5b0e9e6

Browse files
committed
Do not disable depscan logger
Signed-off-by: Prabhu Subramanian <[email protected]>
1 parent f5a5c2a commit 5b0e9e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blint/logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@
4040
DEBUG = logging.DEBUG
4141

4242
for log_name, log_obj in logging.Logger.manager.loggerDict.items():
43-
if log_name != __name__:
43+
if not log_name.startswith("blint") and not log_name.startswith("depscan"):
4444
log_obj.disabled = True

0 commit comments

Comments
 (0)