From bfaf74e11757e6fcc70506918abe363cc6329399 Mon Sep 17 00:00:00 2001 From: "Brad P. Crochet" Date: Thu, 22 Feb 2018 11:27:29 -0500 Subject: [PATCH] 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 --- tripleoclient/workflows/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tripleoclient/workflows/base.py b/tripleoclient/workflows/base.py index 3a1514f94..9efe1d245 100644 --- a/tripleoclient/workflows/base.py +++ b/tripleoclient/workflows/base.py @@ -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