remove logs from composer by default (#2307)

Currently the composer shows `handle_codex_event:<event name>` by
default which feels confusing. Let's make it appear in trace.
This commit is contained in:
aibrahim-oai 2025-08-14 13:01:15 -07:00 committed by GitHub
parent 475ba13479
commit b62c2d9552
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -613,7 +613,7 @@ impl ChatWidget<'_> {
| EventMsg::AgentReasoningDelta(_)
| EventMsg::ExecCommandOutputDelta(_) => {}
_ => {
tracing::info!("handle_codex_event: {:?}", msg);
tracing::trace!("handle_codex_event: {:?}", msg);
}
}