🎨 Better error handling in managers

This commit is contained in:
GeoffreyCoulaud
2023-05-31 17:21:01 +02:00
parent d204737339
commit ef63210a8f
4 changed files with 12 additions and 14 deletions

View File

@@ -247,7 +247,7 @@ def main(version): # pylint: disable=unused-argument
base_log_level = os.environ.get("LOGLEVEL", profile_base_log_level).upper()
lib_log_level = os.environ.get("LIBLOGLEVEL", profile_lib_log_level).upper()
log_levels = {
__name__: base_log_level,
None: base_log_level,
"PIL": lib_log_level,
"urllib3": lib_log_level,
}