diff --git a/packages/cli/commands/start.ts b/packages/cli/commands/start.ts index 112e751df9..36cd9c4547 100644 --- a/packages/cli/commands/start.ts +++ b/packages/cli/commands/start.ts @@ -103,6 +103,9 @@ export class Start extends Command { while (executingWorkflows.length !== 0) { if (count++ % 4 === 0) { console.log(`Waiting for ${executingWorkflows.length} active executions to finish...`); + executingWorkflows.map(execution => { + console.log(` - Execution ID ${execution.id}, workflow ID: ${execution.workflowId}`); + }); } await new Promise((resolve) => { setTimeout(resolve, 500);