mirror of
https://github.com/clearml/clearml-agent
synced 2025-03-04 02:57:36 +00:00
Do not show urllib3 logging level as part of the agent's configuration dump
This commit is contained in:
parent
ffe653afc6
commit
0a03dced50
@ -206,6 +206,11 @@ class Session(_Session):
|
|||||||
config.pop('env', None)
|
config.pop('env', None)
|
||||||
if remove_secret_keys:
|
if remove_secret_keys:
|
||||||
recursive_remove_secrets(config, secret_keys=remove_secret_keys)
|
recursive_remove_secrets(config, secret_keys=remove_secret_keys)
|
||||||
|
# remove logging.loggers.urllib3.level from the print
|
||||||
|
try:
|
||||||
|
config['logging']['loggers']['urllib3'].pop('level', None)
|
||||||
|
except (KeyError, TypeError, AttributeError):
|
||||||
|
pass
|
||||||
config = ConfigFactory.from_dict(config)
|
config = ConfigFactory.from_dict(config)
|
||||||
self.log.debug("Run by interpreter: %s", sys.executable)
|
self.log.debug("Run by interpreter: %s", sys.executable)
|
||||||
print(
|
print(
|
||||||
|
Loading…
Reference in New Issue
Block a user