From b62c2d95527c8b388fd0e541d920dedec5745175 Mon Sep 17 00:00:00 2001 From: aibrahim-oai Date: Thu, 14 Aug 2025 13:01:15 -0700 Subject: [PATCH] remove logs from composer by default (#2307) Currently the composer shows `handle_codex_event:` by default which feels confusing. Let's make it appear in trace. --- codex-rs/tui/src/chatwidget.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/tui/src/chatwidget.rs b/codex-rs/tui/src/chatwidget.rs index 0319163f..3fa78279 100644 --- a/codex-rs/tui/src/chatwidget.rs +++ b/codex-rs/tui/src/chatwidget.rs @@ -613,7 +613,7 @@ impl ChatWidget<'_> { | EventMsg::AgentReasoningDelta(_) | EventMsg::ExecCommandOutputDelta(_) => {} _ => { - tracing::info!("handle_codex_event: {:?}", msg); + tracing::trace!("handle_codex_event: {:?}", msg); } }