From 2894c273c9a3372a01a9575f8c2e357b098bb9e5 Mon Sep 17 00:00:00 2001 From: Michael Kret Date: Mon, 28 Oct 2024 14:33:15 +0200 Subject: [PATCH] log execution in executeWebhook --- packages/cli/src/webhooks/waiting-webhooks.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/cli/src/webhooks/waiting-webhooks.ts b/packages/cli/src/webhooks/waiting-webhooks.ts index 1d5b18d362..e7b124109e 100644 --- a/packages/cli/src/webhooks/waiting-webhooks.ts +++ b/packages/cli/src/webhooks/waiting-webhooks.ts @@ -92,6 +92,8 @@ export class WaitingWebhooks implements IWebhookManager { req.params = {} as WaitingWebhookRequest['params']; const execution = await this.getExecution(executionId); + this.logger.debug('executeWebhook ==> execution'); + this.logger.debug(JSON.stringify(execution, null, 2)); if (!execution) { throw new NotFoundError(`The execution "${executionId}" does not exist.`);