Skip to content

Commit 92fe2ec

Browse files
committed
Remove unnecessary extra GitHub webhook log
It's already done in `process_payload` below.
1 parent 7764894 commit 92fe2ec

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/github/webhook.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,6 @@ pub async fn webhook(
172172
return (StatusCode::BAD_REQUEST, "Payload must be UTF-8").into_response();
173173
};
174174

175-
tracing::info!(?event, ?payload);
176-
177175
match process_payload(event, payload, &ctx).await {
178176
Ok(true) => ("processed request",).into_response(),
179177
Ok(false) => ("ignored request",).into_response(),

0 commit comments

Comments
 (0)