We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5a5c2a commit 5b0e9e6Copy full SHA for 5b0e9e6
blint/logger.py
@@ -40,5 +40,5 @@
40
DEBUG = logging.DEBUG
41
42
for log_name, log_obj in logging.Logger.manager.loggerDict.items():
43
- if log_name != __name__:
+ if not log_name.startswith("blint") and not log_name.startswith("depscan"):
44
log_obj.disabled = True
0 commit comments