Unverified Commit 64c6eb66 authored by Ameen Patel's avatar Ameen Patel Committed by GitHub
Browse files

fix: downgrade noisy tool parser INFO logs to DEBUG (#7573)


Signed-off-by: default avatarAmeenP <ameenp360@gmail.com>
parent 0b0879dd
...@@ -16,9 +16,9 @@ pub async fn try_tool_call_parse_aggregate( ...@@ -16,9 +16,9 @@ pub async fn try_tool_call_parse_aggregate(
Option<String>, Option<String>,
)> { )> {
if parser_str.is_none() { if parser_str.is_none() {
tracing::info!("No tool parser provided. Trying parsing with default parser."); tracing::debug!("No tool parser provided. Trying parsing with default parser.");
} else { } else {
tracing::info!("Using tool parser: {:?}", parser_str); tracing::debug!("Using tool parser: {:?}", parser_str);
} }
let (parsed, content) = detect_and_parse_tool_call(message, parser_str, tools).await?; let (parsed, content) = detect_and_parse_tool_call(message, parser_str, tools).await?;
if parsed.is_empty() { if parsed.is_empty() {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment