diff --git a/src/web/routes/api/webhooks/github/mod.rs b/src/web/routes/api/webhooks/github/mod.rs index 27c9a0c..49edae7 100644 --- a/src/web/routes/api/webhooks/github/mod.rs +++ b/src/web/routes/api/webhooks/github/mod.rs @@ -42,7 +42,7 @@ pub async fn handler(req: HttpRequest, token: web::Path, body: Bytes, db Ok(e) => e, Err(e) => { log::debug!("Bad request body json: {e}"); - log::debug!("{json:?}"); + log::debug!("{json}"); return Ok(HttpResponse::BadRequest()); } };