From dd601ca8ed939d42fa186113bf0dca31c6e4a6db Mon Sep 17 00:00:00 2001 From: Google Team Member Date: Thu, 5 Feb 2026 16:14:35 -0800 Subject: [PATCH] fix: Reduce the logging level Wonder if we can downgrade those two info() level loggings. They make viewing information from our debugger CLI very difficult. PiperOrigin-RevId: 866158204 --- .../main/java/com/google/adk/flows/llmflows/BaseLlmFlow.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/google/adk/flows/llmflows/BaseLlmFlow.java b/core/src/main/java/com/google/adk/flows/llmflows/BaseLlmFlow.java index 6dfbf586..fd383baf 100644 --- a/core/src/main/java/com/google/adk/flows/llmflows/BaseLlmFlow.java +++ b/core/src/main/java/com/google/adk/flows/llmflows/BaseLlmFlow.java @@ -698,13 +698,13 @@ private Event buildModelResponseEvent( Event event = eventBuilder.build(); - logger.info("event: {} functionCalls: {}", event, event.functionCalls()); + logger.debug("event: {} functionCalls: {}", event, event.functionCalls()); if (!event.functionCalls().isEmpty()) { Functions.populateClientFunctionCallId(event); Set longRunningToolIds = Functions.getLongRunningFunctionCalls(event.functionCalls(), llmRequest.tools()); - logger.info("longRunningToolIds: {}", longRunningToolIds); + logger.debug("longRunningToolIds: {}", longRunningToolIds); if (!longRunningToolIds.isEmpty()) { event.setLongRunningToolIds(Optional.of(longRunningToolIds)); }