From 3667b5d16e5813fbc3c7fcbf22a54c48f9172a91 Mon Sep 17 00:00:00 2001 From: Matt Meigs Date: Thu, 7 Dec 2023 10:43:54 -0500 Subject: [PATCH] log event and boyd --- api/controllers/v1/github.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/api/controllers/v1/github.ts b/api/controllers/v1/github.ts index c087aadcd..f86677800 100644 --- a/api/controllers/v1/github.ts +++ b/api/controllers/v1/github.ts @@ -93,6 +93,7 @@ export const TriggerBuild = async (event: any = {}, context: any = {}): Promise< body = JSON.parse(event.body) as PushEvent; } catch (e) { console.log('[TriggerBuild]: ERROR! Could not parse event.body', e); + console.log(`event: ${event} and event body: ${event.body}`); return { statusCode: 502, headers: { 'Content-Type': 'text/plain' },