Don't print the start of a workflow, log it

The printing of the workflow execution makes things too verbose from
the CLI. That output intermixes with other output. We should just log
it at level DEBUG.

Change-Id: I11228582c948adfc90b4f1ddb172fabb87965660
This commit is contained in:
Brad P. Crochet
2018-02-22 11:27:29 -05:00
parent 91751a7d50
commit bfaf74e117

View File

@@ -39,8 +39,8 @@ def start_workflow(workflow_client, identifier, workflow_input):
workflow_input=workflow_input
)
print("Started Mistral Workflow {}. Execution ID: {}".format(
identifier, execution.id))
LOG.debug("Started Mistral Workflow {}. Execution ID: {}".format(
identifier, execution.id))
return execution