Hi CourageousKoala93 , clearml has a logging configuration section which can be used for this purpose - this is loaded directly into the python logging module (using dictConfig)
The default is this:{ version: 1 disable_existing_loggers: 0 loggers { clearml { level: INFO } boto { level: WARNING } "boto.perf" { level: WARNING } botocore { level: WARNING } boto3 { level: WARNING } google { level: WARNING } urllib3 { level: WARNING } } }
it can be placed and modified as follows in the clearml.conf
:logging { version: 1 disable_existing_loggers: 0 loggers { clearml { level: INFO } boto { level: WARNING } "boto.perf" { level: WARNING } botocore { level: WARNING } boto3 { level: WARNING } google { level: WARNING } urllib3 { level: WARNING } } }
I really appreciate your responsiveness! Thank you
I can’t find this in the docs 🙈 Can you please send me the section?