Skip to content

Commit

Permalink
fix: remove dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyrix126 committed Dec 12, 2024
1 parent 1a81636 commit 07ac351
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/utils/human.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 07ac351

Please sign in to comment.