Description
Currently, WeatherRoutingTool/algorithms/isobased.py uses a manual variable debug = False and if debug: print(...) statements for debugging. This should be replaced with the standard logger.debug() to allow better control over verbosity via configuration.
Proposed Changes
- Remove
debug = False local variables.
- Replace
if debug: ... blocks with logger.debug(...).
I would like to work on this issue.