fix: stderr noise (#7346)

This commit is contained in:
Michael Neale
2026-02-20 10:31:52 +11:00
committed by GitHub
parent 0ed4fed6c5
commit 38684edb70
+2 -2
View File
@@ -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); flush_markdown_buffer(buffer, theme);
println!("WARNING: Message content type could not be rendered"); eprintln!("WARNING: Message content type could not be rendered");
} }
} }
} }