mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
fix(utils.py): fix logging level of error message
This commit is contained in:
parent
acf95e978d
commit
ce4dffb7cb
1 changed files with 1 additions and 1 deletions
|
@ -6063,7 +6063,7 @@ def get_api_base(model: str, optional_params: dict) -> Optional[str]:
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
verbose_logger.error("Error occurred in getting api base - {}".format(str(e)))
|
verbose_logger.debug("Error occurred in getting api base - {}".format(str(e)))
|
||||||
custom_llm_provider = None
|
custom_llm_provider = None
|
||||||
dynamic_api_key = None
|
dynamic_api_key = None
|
||||||
dynamic_api_base = None
|
dynamic_api_base = None
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue