From 0b20d41ea52f37336085fe498533936e87534fa4 Mon Sep 17 00:00:00 2001 From: mxxntype <59417007+mxxntype@users.noreply.github.com> Date: Wed, 22 May 2024 21:30:11 +0300 Subject: [PATCH] fix(server): Enable timestamps in `tracing` logs --- server/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/server/src/lib.rs b/server/src/lib.rs index 297072b..35d0334 100644 --- a/server/src/lib.rs +++ b/server/src/lib.rs @@ -23,7 +23,6 @@ impl TCPChat { let color_eyre = color_eyre::install().is_ok(); fmt::Subscriber::builder() .with_env_filter("tcp_chat=trace") - .without_time() .pretty() .init(); tracing::debug!(message = "Tracing setup hook finished", %color_eyre);