From 55078718693df67cf7a2024bb50d250bb747ae46 Mon Sep 17 00:00:00 2001 From: Jorrit Schaap <schaap@astron.nl> Date: Thu, 9 Jul 2020 11:26:42 +0200 Subject: [PATCH] TMSS-189: fixed logging --- SAS/TMSS/src/tmss/tmssapp/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SAS/TMSS/src/tmss/tmssapp/tasks.py b/SAS/TMSS/src/tmss/tmssapp/tasks.py index a7ec0563ed0..463934b7e9b 100644 --- a/SAS/TMSS/src/tmss/tmssapp/tasks.py +++ b/SAS/TMSS/src/tmss/tmssapp/tasks.py @@ -122,7 +122,7 @@ def create_task_blueprint_from_task_draft(task_draft: models.TaskDraft) -> model specifications_template=task_draft.specifications_template ) - logger.info("Task Blueprint (id=%s) created from Task Draft (id=%s) created task_blueprint id=%s", task_blueprint.pk, task_draft.pk) + logger.info("Task Blueprint (id=%s) created from Task Draft (id=%s)", task_blueprint.pk, task_draft.pk) # now that we have a task_blueprint, its time to refresh the task_draft so we get the non-cached fields task_draft.refresh_from_db() -- GitLab