From 34f342d9fe0555771baa08f404981584a5329f46 Mon Sep 17 00:00:00 2001 From: Lee Kelvin Date: Tue, 25 Oct 2022 19:49:43 -0700 Subject: [PATCH] Ensure QG task table is printed in its entirety --- python/lsst/ctrl/mpexec/cmdLineFwk.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/lsst/ctrl/mpexec/cmdLineFwk.py b/python/lsst/ctrl/mpexec/cmdLineFwk.py index 70797d91..c3ba1c1b 100644 --- a/python/lsst/ctrl/mpexec/cmdLineFwk.py +++ b/python/lsst/ctrl/mpexec/cmdLineFwk.py @@ -594,12 +594,13 @@ def makeGraph(self, pipeline: Pipeline, args: SimpleNamespace) -> Optional[Quant else: if _LOG.isEnabledFor(logging.INFO): qg_task_table = self._generateTaskTable(qgraph) + qg_task_table_formatted = "\n".join(qg_task_table.pformat_all()) _LOG.info( "QuantumGraph contains %d quanta for %d tasks, graph ID: %r\n%s", nQuanta, len(qgraph.taskGraph), qgraph.graphID, - str(qg_task_table), + qg_task_table_formatted, ) if args.save_qgraph: