From b0780d3bf57857f2274197e9f049a90d75fccffa Mon Sep 17 00:00:00 2001 From: Britt Dodd Date: Mon, 10 Jan 2022 10:35:14 -0500 Subject: [PATCH] Remove log entries --- handler/routes.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/handler/routes.go b/handler/routes.go index bdc5caf..57fe67e 100644 --- a/handler/routes.go +++ b/handler/routes.go @@ -280,8 +280,6 @@ func UpdateClient(db store.IStore) echo.HandlerFunc { return c.JSON(http.StatusBadRequest, jsonHTTPResponse{false, "Allowed IPs must be in CIDR format"}) } - log.Infof("array length: %d", len(_client.ExtraAllowedIPs) ) - log.Infof("extraAllowedIPs: %v", _client.ExtraAllowedIPs) if len(_client.ExtraAllowedIPs) > 0 && util.ValidateAllowedIPs(_client.ExtraAllowedIPs) == false { log.Warnf("Invalid Allowed IPs input from user: %v", _client.ExtraAllowedIPs) return c.JSON(http.StatusBadRequest, jsonHTTPResponse{false, "Extra Allowed IPs must be in CIDR format"})