From d8eaeab85cbe0b1eb64ab73f1d0613520d917f3e Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Wed, 28 Aug 2019 17:27:33 +0200 Subject: [PATCH] :zap: Remove debug messages --- packages/cli/src/Server.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/cli/src/Server.ts b/packages/cli/src/Server.ts index 048e6b29ef..b61259ff43 100644 --- a/packages/cli/src/Server.ts +++ b/packages/cli/src/Server.ts @@ -1001,8 +1001,6 @@ class App { // GET webhook requests this.app.get(`/${this.endpointWebhook}/*`, async (req: express.Request, res: express.Response) => { - console.log('\n*** WEBHOOK CALLED (GET) ***'); - // Cut away the "/webhook/" to get the registred part of the url const requestUrl = (req as ICustomRequest).parsedUrl!.pathname!.slice(this.endpointWebhook.length + 2); @@ -1025,8 +1023,6 @@ class App { // POST webhook requests this.app.post(`/${this.endpointWebhook}/*`, async (req: express.Request, res: express.Response) => { - console.log('\n*** WEBHOOK CALLED (POST) ***'); - // Cut away the "/webhook/" to get the registred part of the url const requestUrl = (req as ICustomRequest).parsedUrl!.pathname!.slice(this.endpointWebhook.length + 2); @@ -1049,8 +1045,6 @@ class App { // GET webhook requests (test for UI) this.app.get(`/${this.endpointWebhookTest}/*`, async (req: express.Request, res: express.Response) => { - console.log('\n*** WEBHOOK-TEST CALLED (GET) ***'); - // Cut away the "/webhook-test/" to get the registred part of the url const requestUrl = (req as ICustomRequest).parsedUrl!.pathname!.slice(this.endpointWebhookTest.length + 2); @@ -1073,8 +1067,6 @@ class App { // POST webhook requests (test for UI) this.app.post(`/${this.endpointWebhookTest}/*`, async (req: express.Request, res: express.Response) => { - console.log('\n*** WEBHOOK-TEST CALLED (POST) ***'); - // Cut away the "/webhook-test/" to get the registred part of the url const requestUrl = (req as ICustomRequest).parsedUrl!.pathname!.slice(this.endpointWebhookTest.length + 2);