From 35eec781384d185f804620a0ebbd0de870598fc8 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Sat, 1 Feb 2025 20:45:30 -0500 Subject: Remove logging This logged every single request to stdout. This is not necessary. --- main.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index 8ab98dd..dad6584 100644 --- a/main.go +++ b/main.go @@ -115,8 +115,6 @@ func main() { } subject := strings.Join(subjectParts, ".") - log.Println("Forwarding HTTP", r.Method, "request on", r.URL.Path, "to NATS subject:", subject) - // Create a new NATS message with the HTTP request body msg := nats.Msg{ Subject: subject, -- cgit