Skip to content

Commit 38684ed

Browse files
authored
fix: stderr noise (#7346)
1 parent 0ed4fed commit 38684ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/goose-cli/src/session/output.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ pub fn render_message(message: &Message, debug: bool) {
261261
}
262262
}
263263
_ => {
264-
println!("WARNING: Message content type could not be rendered");
264+
eprintln!("WARNING: Message content type could not be rendered");
265265
}
266266
}
267267
}
@@ -349,7 +349,7 @@ pub fn render_message_streaming(
349349
}
350350
_ => {
351351
flush_markdown_buffer(buffer, theme);
352-
println!("WARNING: Message content type could not be rendered");
352+
eprintln!("WARNING: Message content type could not be rendered");
353353
}
354354
}
355355
}

0 commit comments

Comments
 (0)