Skip to content
Snippets Groups Projects
Commit f1131b80 authored by Tammo Jan Dijkema's avatar Tammo Jan Dijkema
Browse files

Task #9970: improve logging output of genericpipeline (by Stephen Bourke)

parent 4546f432
No related branches found
No related tags found
No related merge requests found
...@@ -188,6 +188,7 @@ class GenericPipeline(control): ...@@ -188,6 +188,7 @@ class GenericPipeline(control):
# plugins are not used at the moment and might better be replaced with master recipes # plugins are not used at the moment and might better be replaced with master recipes
while step_name_list: while step_name_list:
stepname = step_name_list.pop(0) stepname = step_name_list.pop(0)
self.logger.info("Beginning step %s" % (stepname,))
step = step_control_dict[stepname] step = step_control_dict[stepname]
#step_parset = step_parset_obj[stepname] #step_parset = step_parset_obj[stepname]
inputdict = {} inputdict = {}
......
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