I have my weather station set to send data to Home Assistant every 16 seconds. This was needlessly filling up the log with useless information and by-passing the python logging module.
The default wsgiref.simple_server sends every request to stderr, actually, not to python logging module.
I have my weather station set to send data to Home Assistant every 16 seconds. This was needlessly filling up the log with useless information and by-passing the python logging module.
The default wsgiref.simple_server sends every request to stderr, actually, not to python logging module.
So, I followed the advice given here:
Control wsgiref.simple_server log