Webhook-to-SSE gateway with hierarchical topic routing and signature verification

Include event ID in publish log line

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+1 -1
+1 -1
server.go
··· 103 103 } 104 104 105 105 s.broker.Publish(event) 106 - log.Printf("published %s %s (%s)", r.Method, path, r.Header.Get("Content-Type")) 106 + log.Printf("published %s %s (%s) id=%s", r.Method, path, r.Header.Get("Content-Type"), event.ID) 107 107 w.WriteHeader(http.StatusAccepted) 108 108 } 109 109