fix: When parallel agents run, only write to stdout from the parent and only display the parent's throbber

This commit is contained in:
2026-02-18 09:59:24 -07:00
parent 313058e70a
commit 69ad584137
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -861,7 +861,7 @@ impl ToolCall {
let prompt = format!("Call {cmd_name} {}", cmd_args.join(" "));
if *IS_STDOUT_TERMINAL {
if *IS_STDOUT_TERMINAL && config.read().current_depth == 0 {
println!("{}", dimmed_text(&prompt));
}