summaryrefslogtreecommitdiffstats
path: root/web/webhook.go
diff options
context:
space:
mode:
Diffstat (limited to 'web/webhook.go')
-rw-r--r--web/webhook.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/webhook.go b/web/webhook.go
index 55cdeb9b5..a5e8300b4 100644
--- a/web/webhook.go
+++ b/web/webhook.go
@@ -57,7 +57,7 @@ func incomingWebhook(c *Context, w http.ResponseWriter, r *http.Request) {
}
if c.App.Config().LogSettings.EnableWebhookDebugging {
- mlog.Debug(fmt.Sprint("Incoming webhook received. Content=", incomingWebhookPayload.ToJson()))
+ mlog.Debug(fmt.Sprintf("Incoming webhook received. Id=%s Content=%s", id, incomingWebhookPayload.ToJson()))
}
err = c.App.HandleIncomingWebhook(id, incomingWebhookPayload)