mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
log execution in executeWebhook
This commit is contained in:
parent
6555647dbd
commit
2894c273c9
|
@ -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.`);
|
||||
|
|
Loading…
Reference in a new issue