From c05f22a3adf781d28a611bf797745ae59c6032bc Mon Sep 17 00:00:00 2001 From: davidnewhall2 Date: Mon, 22 Jun 2020 00:19:55 -0700 Subject: [PATCH] seems partially working --- core/unifi/events.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/unifi/events.go b/core/unifi/events.go index 53adad84..42304cde 100644 --- a/core/unifi/events.go +++ b/core/unifi/events.go @@ -3,7 +3,6 @@ package unifi import ( "encoding/json" "fmt" - "log" "time" ) @@ -93,8 +92,6 @@ func makeEventParams(timeRange ...time.Time) (string, error) { params, err := json.Marshal(&rp) - log.Println(string(params)) - return string(params), err }