From 9b1e263312561b4f9a0491daba4618db6b0d478f Mon Sep 17 00:00:00 2001 From: Jacob Date: Thu, 7 May 2026 01:47:46 -0400 Subject: [PATCH] chore: remove `now_utc` log that has served its purpose --- src/command/join.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/command/join.rs b/src/command/join.rs index 586a418..f10c761 100644 --- a/src/command/join.rs +++ b/src/command/join.rs @@ -158,7 +158,6 @@ impl EventHandler for Handler { let elapsed = elapsed.try_into().expect("TODO"); let now_utc = self.start_utc.checked_add(elapsed).expect("TODO"); - tracing::error!(?now_utc, "TODO"); let year = now_utc.year(); let month = now_utc.month();