mirror of
https://github.com/EvolutionAPI/adk-python.git
synced 2025-07-14 09:51:25 -06:00
Copybara import of the project:
-- 09b10cd96fc095061c6891a0d3cc3cc83948a126 by pratikmahajan <pmahajan@redhat.com>: fix: change litellm request log level to debug Litellm was previously logging every request at the info level, which could clutter the logs with unnecessary detail in production environments. This commit changes the log statement to use the debug level instead, ensuring that request details are only logged when debug mode is active. This helps keep the standard logs focused on more critical information. Co-authored-by: pratikmahajan<pmahajan@redhat.com> COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/583 from PratikMahajan:litellm-log-levels 04fcd7247693e0c733318789f1ea47ecec81add4 PiperOrigin-RevId: 755691209
This commit is contained in:
parent
357143c2aa
commit
c565473bf8
@ -611,7 +611,7 @@ class LiteLlm(BaseLlm):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
self._maybe_append_user_content(llm_request)
|
self._maybe_append_user_content(llm_request)
|
||||||
logger.info(_build_request_log(llm_request))
|
logger.debug(_build_request_log(llm_request))
|
||||||
|
|
||||||
messages, tools = _get_completion_inputs(llm_request)
|
messages, tools = _get_completion_inputs(llm_request)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user