to 6h per day because lets be honest

This commit is contained in:
Bel LaPointe
2026-02-20 10:04:14 -07:00
parent 087fa739ce
commit 252a03a83f

View File

@@ -200,23 +200,24 @@ fn log(
} }
if result.len() > 1 { if result.len() > 1 {
let hours_per_day = 6;
match precision { match precision {
0 => eprintln!( 0 => eprintln!(
"({:.0}h of {}h over {} dates)", "({:.0}h of {}h over {} dates)",
total_d, total_d,
8 * result.len(), hours_per_day * result.len(),
result.len() result.len()
), ),
1 => eprintln!( 1 => eprintln!(
"({:.1}h of {}h over {} dates)", "({:.1}h of {}h over {} dates)",
total_d, total_d,
8 * result.len(), hours_per_day * result.len(),
result.len() result.len()
), ),
_ => eprintln!( _ => eprintln!(
"({:.2}h of {}h over {} dates)", "({:.2}h of {}h over {} dates)",
total_d, total_d,
8 * result.len(), hours_per_day * result.len(),
result.len() result.len()
), ),
} }