Hi, I’m a fairly basic FireWorks user. I import the package in my python code.
Here is my question.
At line 132 in the current rocket.py module:
l_logger = get_fw_logger(‘rocket.launcher’, l_dir=logdir,stream_level=‘INFO’)
``
I see that the stream_level value is forced to ‘INFO’, unlike other calls to get_fw_logger().
Is this intentional?
For my needs, I modified the code as follows, in order to propagate the current LaunchPad’s strm_lvl:
strm_lvl = lp.strm_lvl if lp else ‘INFO’
l_logger = get_fw_logger(‘rocket.launcher’, l_dir=logdir,stream_level=strm_lvl)
``
but I wonder if this could have unintended side effects.