Skip to content

Commit dd601ca

Browse files
google-genai-botcopybara-github
authored andcommitted
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
1 parent 5dfc000 commit dd601ca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core/src/main/java/com/google/adk/flows/llmflows/BaseLlmFlow.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -698,13 +698,13 @@ private Event buildModelResponseEvent(
698698

699699
Event event = eventBuilder.build();
700700

701-
logger.info("event: {} functionCalls: {}", event, event.functionCalls());
701+
logger.debug("event: {} functionCalls: {}", event, event.functionCalls());
702702

703703
if (!event.functionCalls().isEmpty()) {
704704
Functions.populateClientFunctionCallId(event);
705705
Set<String> longRunningToolIds =
706706
Functions.getLongRunningFunctionCalls(event.functionCalls(), llmRequest.tools());
707-
logger.info("longRunningToolIds: {}", longRunningToolIds);
707+
logger.debug("longRunningToolIds: {}", longRunningToolIds);
708708
if (!longRunningToolIds.isEmpty()) {
709709
event.setLongRunningToolIds(Optional.of(longRunningToolIds));
710710
}

0 commit comments

Comments
 (0)