From e1230627d0dda8023c4f277656395f8c9f1a0e01 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Wed, 6 Dec 2023 14:08:43 -0800 Subject: [PATCH] (fix) print statements --- litellm/proxy/proxy_server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/proxy/proxy_server.py b/litellm/proxy/proxy_server.py index ff2f4bb17..3d307788f 100644 --- a/litellm/proxy/proxy_server.py +++ b/litellm/proxy/proxy_server.py @@ -1027,7 +1027,7 @@ async def info_key_fn(key: str = fastapi.Query(..., description="Key in the requ async def add_new_model(model_params: ModelParams): global llm_router, llm_model_list, general_settings, user_config_file_path try: - print("User config path: ", user_config_file_path) + print_verbose("User config path: ", user_config_file_path) # Load existing config if os.path.exists(f"{user_config_file_path}"): with open(f"{user_config_file_path}", "r") as config_file: @@ -1035,7 +1035,7 @@ async def add_new_model(model_params: ModelParams): else: config = {"model_list": []} - print("Loaded config: ", config) + print_verbose("Loaded config: ", config) # Add the new model to the config config['model_list'].append({ 'model_name': model_params.model_name,