summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2025-02-01 20:45:30 -0500
committerRobby Zambito <contact@robbyzambito.me>2025-02-16 12:50:52 -0500
commit35eec781384d185f804620a0ebbd0de870598fc8 (patch)
treec74867117dc2142f36d6708daee55934f23430ac /main.go
parent0facd7006e846b1d0043b430155e1ca8288acbe3 (diff)
Remove logging
This logged every single request to stdout. This is not necessary.
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 0 insertions, 2 deletions
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,