From 07ac3517646cdbce6850a1cdc5120e3fef4f812c Mon Sep 17 00:00:00 2001 From: Cyrix126 Date: Thu, 12 Dec 2024 12:06:05 +0100 Subject: [PATCH] fix: remove dbg --- src/utils/human.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/utils/human.rs b/src/utils/human.rs index 8bdcdcb..04e1d1c 100644 --- a/src/utils/human.rs +++ b/src/utils/human.rs @@ -83,11 +83,8 @@ impl HumanTime { let days = mdays / 86400; let day_secs = mdays % 86400; let hours = day_secs / 3600; - dbg!(&day_secs); let minutes = day_secs % 3600 / 60; - dbg!(&minutes); let seconds = day_secs % 60; - dbg!(&seconds); let mut started = false; let mut string = String::new(); string.push_str(&Self::plural(&mut started, "year", years, separator));