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 a66fe51 commit 33e42a0Copy full SHA for 33e42a0
src/github/webhook.rs
@@ -172,6 +172,8 @@ pub async fn webhook(
172
return (StatusCode::BAD_REQUEST, "Payload must be UTF-8").into_response();
173
};
174
175
+ tracing::info!(?event, ?payload);
176
+
177
match process_payload(event, payload, &ctx).await {
178
Ok(true) => ("processed request",).into_response(),
179
Ok(false) => ("ignored request",).into_response(),
0 commit comments