From b7ca9acbaaec8e5f3caa2c9ad1cce02ce5d1b19c Mon Sep 17 00:00:00 2001 From: Wouter Klijn <klijn@astron.nl> Date: Thu, 8 Aug 2013 13:58:40 +0000 Subject: [PATCH] Task #4518: PRint debug info when adding beamtables --- CEP/Pipeline/recipes/sip/nodes/imager_prepare.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CEP/Pipeline/recipes/sip/nodes/imager_prepare.py b/CEP/Pipeline/recipes/sip/nodes/imager_prepare.py index 8a51f623c2e..5c2d842711e 100644 --- a/CEP/Pipeline/recipes/sip/nodes/imager_prepare.py +++ b/CEP/Pipeline/recipes/sip/nodes/imager_prepare.py @@ -127,11 +127,15 @@ class imager_prepare(LOFARnodeTCP): def add_beam_tables(self, time_slices_path_list): beamtable_proc_group = SubProcessGroup(self.logger) for ms_path in time_slices_path_list: + self.logger.debug( "makebeamtables start" cmd_string = "makebeamtables ms={0} overwrite=true".format(ms_path) + self.logger.debug(cmd_string) beamtable_proc_group.run(cmd_string) if beamtable_proc_group.wait_for_finish() != None: raise Exception("an makebeamtables run failed!") + + self.logger.debug("makebeamtables finished") def _copy_input_files(self, processed_ms_dir, input_map): """ -- GitLab