mirror of
https://github.com/openai/codex.git
synced 2026-05-02 12:21:26 +03:00
feat: reduce span exposition (#10171)
This only avoids the creation of duplicates spans
This commit is contained in:
@@ -306,7 +306,10 @@ pub async fn run_main(
|
||||
// grep for a specific module/target while troubleshooting.
|
||||
.with_target(true)
|
||||
.with_ansi(false)
|
||||
.with_span_events(tracing_subscriber::fmt::format::FmtSpan::FULL)
|
||||
.with_span_events(
|
||||
tracing_subscriber::fmt::format::FmtSpan::NEW
|
||||
| tracing_subscriber::fmt::format::FmtSpan::CLOSE,
|
||||
)
|
||||
.with_filter(env_filter());
|
||||
|
||||
let feedback = codex_feedback::CodexFeedback::new();
|
||||
|
||||
Reference in New Issue
Block a user