Disable ansi codes in tui log file (#7836)

This commit is contained in:
pakrym-oai 2025-12-10 13:56:48 -08:00 committed by GitHub
parent bfb4d5710b
commit eb2e5458cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -269,6 +269,7 @@ pub async fn run_main(
let file_layer = tracing_subscriber::fmt::layer()
.with_writer(non_blocking)
.with_target(false)
.with_ansi(false)
.with_span_events(tracing_subscriber::fmt::format::FmtSpan::CLOSE)
.with_filter(env_filter());