(fix) proxy print exception when reading config

This commit is contained in:
ishaan-jaff 2023-11-10 16:22:20 -08:00
parent 5da6fb84fa
commit 29eac53d76

View file

@ -206,7 +206,9 @@ def load_router_config(router: Optional[litellm.Router], config_file_path: str):
config = yaml.safe_load(file)
else:
pass
except:
except Exception as e:
print_verbose(f"Exception while reading Config: {e}")
pass
print_verbose(f"Configs passed in, loaded config YAML\n{config}")