From a68d0f63648240bce3c80a4609589abc8259e253 Mon Sep 17 00:00:00 2001 From: AJ Date: Thu, 5 Mar 2020 14:04:30 -0500 Subject: [PATCH] exception was being thrown on logging output not enough parameters for log call --- st2actions/st2actions/workflows/workflows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/st2actions/st2actions/workflows/workflows.py b/st2actions/st2actions/workflows/workflows.py index 397cf2d49b..2317a15ee8 100644 --- a/st2actions/st2actions/workflows/workflows.py +++ b/st2actions/st2actions/workflows/workflows.py @@ -148,7 +148,7 @@ def handle_action_execution(self, ac_ex_db): # Skip if task execution is already in completed state. if task_ex_db.status in statuses.COMPLETED_STATUSES: - msg = ('[%s] Action execution "%s" for task "%s (%s)", route "%s", is not processed ' + msg = ('[%s] Action execution "%s" for task "%s", route "%s", is not processed ' 'because task execution "%s" is already in completed state "%s".') LOG.info(msg, wf_ac_ex_id, str(ac_ex_db.id), task_ex_db.task_id, str(task_ex_db.task_route), str(task_ex_db.id), task_ex_db.status)