diff --git a/crates/goose-cli/src/session/output.rs b/crates/goose-cli/src/session/output.rs index 28ccd1677e..8a73bf4d93 100644 --- a/crates/goose-cli/src/session/output.rs +++ b/crates/goose-cli/src/session/output.rs @@ -261,7 +261,7 @@ pub fn render_message(message: &Message, debug: bool) { } } _ => { - println!("WARNING: Message content type could not be rendered"); + eprintln!("WARNING: Message content type could not be rendered"); } } } @@ -349,7 +349,7 @@ pub fn render_message_streaming( } _ => { flush_markdown_buffer(buffer, theme); - println!("WARNING: Message content type could not be rendered"); + eprintln!("WARNING: Message content type could not be rendered"); } } }