log execution in executeWebhook

This commit is contained in:
Michael Kret 2024-10-28 14:33:15 +02:00
parent 6555647dbd
commit 2894c273c9

View file

@ -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.`);