Working on the tests, mildly annoyed by way the webservice uses argparse and how it's started so I changed it a bit:
webservice.py
is called by python (if __name__ == "__main__"
)main
function to take in keyword argumentsNOTE: --logging
has changed to --log-level
Not at all
Called it manually with some print stuff:
❯ python3 ./webservice/webservice.py --log-level DEBUG
{'config_file': './webservice.yaml', 'mode': 'sim', 'log_file': './web.log', 'log_level': 'DEBUG'}
./webservice.yaml sim ./web.log DEBUG
Seems to work.
N/A