diff --git a/rtiow/src/human.rs b/rtiow/src/human.rs index 16e9518..4f2787d 100644 --- a/rtiow/src/human.rs +++ b/rtiow/src/human.rs @@ -214,8 +214,6 @@ impl Scales { let ndx = 0; for ndx in 0..self.suffixes.len() { - println!("{}", self.suffixes[ndx]); - if value == self.suffixes[ndx] { return self.base.pow(ndx as u32) as f64; } @@ -237,14 +235,6 @@ impl Scales { index += 1; } - println!( - "\t\t{}: {} {} --- {}", - value, - index, - self.base.pow(index as u32), - value / (self.base.pow(index as u32) as f64) - ); - ScaledValue { value: (value / self.base.pow((index) as u32) as f64) as f32, suffix: self.suffixes[index].to_owned(),