From 6b8b7eee5804b224f790782ccdccb6d25a99d6e0 Mon Sep 17 00:00:00 2001 From: BroodjeAap Date: Sun, 15 Jan 2023 11:15:27 +0000 Subject: [PATCH] removed debug prints --- main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.go b/main.go index 07cea5f..ef125b7 100644 --- a/main.go +++ b/main.go @@ -532,11 +532,9 @@ func (web *Web) watchView(c *gin.Context) { _, err := strconv.ParseFloat(value.Value, 64) if err == nil { numericalMap[value.Name] = append(numericalMap[value.Name], value) - log.Println(value) } else { // probably very inefficient to prepend, but want newest values at the top categoricalMap[value.Name] = append([]*FilterOutput{value}, categoricalMap[value.Name]...) - log.Println(value) } }