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:
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user