From c7f626285776337aaa35de81328799f905eb99a5 Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Fri, 12 Oct 2018 11:08:43 -0600 Subject: [PATCH] Shush pls --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 78886db..7ac6123 100644 --- a/main.go +++ b/main.go @@ -65,11 +65,11 @@ func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) { return } if toWhitelist(s.bypass, r.URL.Host) { - logger.Log("Bypassing", r.URL.String()) + //logger.Log("Bypassing", r.URL.String()) s.passthrough(w, r) return } - logger.Log("Proxying", r.URL.String()) + //logger.Log("Proxying", r.URL.String()) // proxy via stuncaddsies s.handleHTTP(w, r) }