Description
During the development of ERS, the loggin demonstrator has grown into a rather big monolithic functin. This should be refactored to make things clearer.
Draft structure could be something as follows
def handlertypes():
# do handlertypes thing
def throttle():
# do throttle things
def others():
# etc..
if main == name:
# this can also be improved..
if handlertypes:
handlertypes()
if throttle:
throttle()
...
To be efficient, this change should go in with #44
Potential impact radius
Small/Isolated
Description
During the development of ERS, the loggin demonstrator has grown into a rather big monolithic functin. This should be refactored to make things clearer.
Draft structure could be something as follows
To be efficient, this change should go in with #44
Potential impact radius
Small/Isolated