From 79d649ae58c6a259d38999c17d9c71c4b44ad5ce Mon Sep 17 00:00:00 2001 From: MCorange99 Date: Sat, 30 Mar 2024 18:27:29 +0200 Subject: [PATCH] uwu --- src/web/routes/api/webhooks/github/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/web/routes/api/webhooks/github/mod.rs b/src/web/routes/api/webhooks/github/mod.rs index 0419db6..fb83f5b 100644 --- a/src/web/routes/api/webhooks/github/mod.rs +++ b/src/web/routes/api/webhooks/github/mod.rs @@ -40,6 +40,7 @@ pub async fn handler(req: HttpRequest, token: web::Path, body: Bytes, db let Ok(event) = types::Event::from_raw_json(event_type, json.clone()) else { log::debug!("Bad request body json"); + log::debug!("{json:?}"); return Ok(HttpResponse::BadRequest()); };