Skip to content
Snippets Groups Projects
Commit b7ca9acb authored by Wouter Klijn's avatar Wouter Klijn
Browse files

Task #4518: PRint debug info when adding beamtables

parent 7abcd6b3
No related branches found
No related tags found
No related merge requests found
...@@ -127,11 +127,15 @@ class imager_prepare(LOFARnodeTCP): ...@@ -127,11 +127,15 @@ class imager_prepare(LOFARnodeTCP):
def add_beam_tables(self, time_slices_path_list): def add_beam_tables(self, time_slices_path_list):
beamtable_proc_group = SubProcessGroup(self.logger) beamtable_proc_group = SubProcessGroup(self.logger)
for ms_path in time_slices_path_list: for ms_path in time_slices_path_list:
self.logger.debug( "makebeamtables start"
cmd_string = "makebeamtables ms={0} overwrite=true".format(ms_path) cmd_string = "makebeamtables ms={0} overwrite=true".format(ms_path)
self.logger.debug(cmd_string)
beamtable_proc_group.run(cmd_string) beamtable_proc_group.run(cmd_string)
if beamtable_proc_group.wait_for_finish() != None: if beamtable_proc_group.wait_for_finish() != None:
raise Exception("an makebeamtables run failed!") raise Exception("an makebeamtables run failed!")
self.logger.debug("makebeamtables finished")
def _copy_input_files(self, processed_ms_dir, input_map): def _copy_input_files(self, processed_ms_dir, input_map):
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment