From d2d22f68b2172522670b3505a2591584b7292e33 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 12 Jan 2022 16:46:24 +0100 Subject: [PATCH] remove console log --- backend/src/webhook/github.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/src/webhook/github.ts b/backend/src/webhook/github.ts index df14726ab..77171507a 100644 --- a/backend/src/webhook/github.ts +++ b/backend/src/webhook/github.ts @@ -3,8 +3,6 @@ import path from 'path' import CONFIG from '../config' export const githubWebhook = async (req: any, res: any): Promise => { - // eslint-disable-next-line no-console - console.log('Hook received') // End call as early as possible res.status(200).end() // eslint-disable-next-line no-console