Remove two print debug statements

This commit is contained in:
Nathan Fisher 2023-06-11 01:48:05 -04:00
parent 3dcb5b6991
commit 03ac43b821

View file

@ -66,9 +66,7 @@ pub(super) fn date_time_from_ts(ts: i64) -> DateTime {
let (year, days) = year_from_ts_with_remainder(ts);
let (month, days) = month_and_days_from_ordinal(days, year);
let seconds = ts % SECS_PER_DAY;
println!("Seconds: {seconds}");
let minutes = seconds / 60;
println!("Minutes: {minutes}");
let second = seconds % 60;
let hour = minutes / 60;
let minute = minutes % 60;