From 03ef043190515c7c2999e2f58495dc07c9fb9aee Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Tue, 2 Dec 2025 11:30:01 +0100 Subject: [PATCH] chore: remove debug log --- src/api/routes/webhooks/#webhook_id/#token/github.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/api/routes/webhooks/#webhook_id/#token/github.ts b/src/api/routes/webhooks/#webhook_id/#token/github.ts index 3499432ad..a85f4b6b8 100644 --- a/src/api/routes/webhooks/#webhook_id/#token/github.ts +++ b/src/api/routes/webhooks/#webhook_id/#token/github.ts @@ -358,7 +358,6 @@ const parseGitHubWebhook = (req: Request, res: Response, next: NextFunction) => case "ping": return res.status(204); default: - console.debug("Unsupported GitHub event type:", eventType); return res.send(500); }