diff --git a/scraping.go b/scraping.go index 0198b51..a920fc8 100644 --- a/scraping.go +++ b/scraping.go @@ -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 }