From 9def3ca2d5b279ce6625f94e684088af462dcc9b Mon Sep 17 00:00:00 2001 From: BroodjeAap Date: Sat, 1 Oct 2022 12:01:12 +0000 Subject: [PATCH] removed debug print --- scraping.go | 1 - 1 file changed, 1 deletion(-) 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 }