From 336c3a7c54eac5f22b0e9e80aa4c4e31fb984dcb Mon Sep 17 00:00:00 2001 From: Matthew Slipper Date: Wed, 15 Feb 2023 10:05:51 -0700 Subject: [PATCH] proxyd: Remove logging --- proxyd/proxyd/server.go | 1 - 1 file changed, 1 deletion(-) diff --git a/proxyd/proxyd/server.go b/proxyd/proxyd/server.go index 5502d74..5df9d37 100644 --- a/proxyd/proxyd/server.go +++ b/proxyd/proxyd/server.go @@ -251,7 +251,6 @@ func (s *Server) HandleRPC(w http.ResponseWriter, r *http.Request) { isLimited := func(method string) bool { isGloballyLimitedMethod := s.isGlobalLimit(method) - fmt.Println(method, isGloballyLimitedMethod) if !isGloballyLimitedMethod && (isUnlimitedOrigin || isUnlimitedUserAgent) { return false }