From 07061496722ae68b2a7bdee3e5ebc4f0089a7197 Mon Sep 17 00:00:00 2001 From: Danny Martini Date: Wed, 18 Sep 2024 18:11:58 +0200 Subject: [PATCH] add debug log for removing executions from active executions --- packages/cli/src/active-executions.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/cli/src/active-executions.ts b/packages/cli/src/active-executions.ts index 515043e905..90ab9a0363 100644 --- a/packages/cli/src/active-executions.ts +++ b/packages/cli/src/active-executions.ts @@ -109,6 +109,7 @@ export class ActiveExecutions { .finally(() => { this.concurrencyControl.release({ mode: executionData.executionMode }); delete this.activeExecutions[executionId]; + this.logger.debug('Execution removed', { executionId }); }); this.logger.debug('Execution added', { executionId });