We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e34cd87 commit 5521dcaCopy full SHA for 5521dca
pkg/services/notifications/webhook.go
@@ -52,7 +52,7 @@ func (ns *NotificationService) sendWebRequestSync(ctx context.Context, webhook *
52
webhook.HttpMethod = http.MethodPost
53
}
54
55
- ns.log.Debug("Sending webhook", "url", webhook.Url, "http method", webhook.HttpMethod)
+ ns.log.Debug("Sending webhook", "url", webhook.Url, "http method", webhook.HttpMethod, "body", webhook.Body)
56
57
if webhook.HttpMethod != http.MethodPost && webhook.HttpMethod != http.MethodPut {
58
return fmt.Errorf("webhook only supports HTTP methods PUT or POST")
0 commit comments