[Fix] Remove INFO level log from /messages endpoint (#14377)

* fix: verbose_proxy_logger.debug

* fix: chat_completion_pass_through_endpoint
This commit is contained in:
Ishaan Jaff
2025-09-09 12:51:03 -07:00
committed by GitHub
parent 29309f767c
commit af7d3cd334
2 changed files with 2 additions and 2 deletions
@@ -205,7 +205,7 @@ async def anthropic_response( # noqa: PLR0915
data=data, user_api_key_dict=user_api_key_dict, response=response # type: ignore
)
verbose_proxy_logger.info("\nResponse from Litellm:\n{}".format(response))
verbose_proxy_logger.debug("\nResponse from Litellm:\n{}".format(response))
return response
except Exception as e:
await proxy_logging_obj.post_call_failure_hook(
@@ -264,7 +264,7 @@ async def chat_completion_pass_through_endpoint( # noqa: PLR0915
)
)
verbose_proxy_logger.info("\nResponse from Litellm:\n{}".format(response))
verbose_proxy_logger.debug("\nResponse from Litellm:\n{}".format(response))
return response
except Exception as e:
await proxy_logging_obj.post_call_failure_hook(