From 1b0774e7af9548ff1afd27437a1b34b28c00d647 Mon Sep 17 00:00:00 2001 From: Lukasz Maksymczuk Date: Thu, 20 May 2021 12:20:36 +0200 Subject: [PATCH] exec group start: add a log showing the exec-group id (#1310) The id is useful to have, I dont want to check `cfy exe gro li` every time to find it --- cloudify_cli/commands/executions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cloudify_cli/commands/executions.py b/cloudify_cli/commands/executions.py index 9439842a3..036a99e2e 100644 --- a/cloudify_cli/commands/executions.py +++ b/cloudify_cli/commands/executions.py @@ -651,6 +651,10 @@ def execution_groups_start(deployment_group, workflow_id, parameters, force=force, concurrency=concurrency, ) + logger.info('Execution group %s started: running %s on ' + 'deployment group %s [concurrency=%s]', + group.id, group.workflow_id, group.deployment_group_id, + group.concurrency) try: execution = wait_for_execution_group(client, group, events_handler=events_logger,