removed debug print

This commit is contained in:
BroodjeAap 2022-10-01 12:01:12 +00:00
parent 50df6c2d83
commit 9def3ca2d5

View file

@ -414,7 +414,6 @@ func roundFloat(val float64, precision uint) float64 {
}
ratio := math.Pow(10, float64(precision))
rounded := math.Round(val*ratio) / ratio
log.Println(val, precision, ratio, rounded)
return rounded
}