From ac81472fd7bd823c286b9750515fe6f0a3250939 Mon Sep 17 00:00:00 2001 From: Kalvin C Date: Mon, 3 Mar 2025 11:00:29 -0800 Subject: [PATCH] chore: log errors to debug, not all extensions support prompts (#1472) --- crates/goose/src/agents/capabilities.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/goose/src/agents/capabilities.rs b/crates/goose/src/agents/capabilities.rs index 199dc1515e..3eeaa1cba3 100644 --- a/crates/goose/src/agents/capabilities.rs +++ b/crates/goose/src/agents/capabilities.rs @@ -619,7 +619,7 @@ impl Capabilities { // Log any errors that occurred if !errors.is_empty() { - tracing::error!( + tracing::debug!( errors = ?errors .into_iter() .map(|e| format!("{:?}", e))