diff --git a/crates/forge_main/src/ui.rs b/crates/forge_main/src/ui.rs index d20d8491bd..abeeed8b54 100644 --- a/crates/forge_main/src/ui.rs +++ b/crates/forge_main/src/ui.rs @@ -606,6 +606,7 @@ impl UI { ChatResponse::Text { mut text, is_complete, is_md, is_summary } => { if is_complete && !text.trim().is_empty() { if is_md || is_summary { + tracing::info!(message = %text, "Agent Response"); text = self.markdown.render(&text); }