From 22210256e0ae5c0cf71040550379c18fc625b096 Mon Sep 17 00:00:00 2001 From: Joey Beauvais-Feisthauer Date: Sun, 23 Jun 2024 16:07:06 -0400 Subject: [PATCH] Remove extra-pretty printing from `tracing` subscriber The default output is still very readable, and uses much less space. --- ext/src/utils.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/src/utils.rs b/ext/src/utils.rs index 91a5b01e8..50034128d 100644 --- a/ext/src/utils.rs +++ b/ext/src/utils.rs @@ -516,7 +516,6 @@ mod logging { }; Subscriber::builder() - .pretty() .with_writer(std::io::stdout) .with_max_level(tracing::Level::INFO) .with_span_events(FmtSpan::NEW | FmtSpan::CLOSE)