Dash app how to get console logging using waitress?

when I run my dash app on my local pc using this code below in pycharm:

app.run_server(debug=False, port=8081, host='192.168.162.91')

it will spit out helpful lines whenever someone is using the app
for example:
192.168.162.91 - - [11/Mar/2020 11:49:44] “POST /_dash-update-component HTTP/1.1” 204 -
192.168.162.91 - - [11/Mar/2020 11:49:44] “POST /_dash-update-component HTTP/1.1” 200 -
192.168.162.91 - - [11/Mar/2020 11:49:44] “POST /_dash-update-component HTTP/1.1” 204 -

But say when I use waitress to host it - is there a way to enable these helpful lines again?

serve(app.server, host='192.168.162.91', port=8080)

All I get is a message which says:
“Serving on http://xxx.xxx.xxxx:8080

Hi,

Better late than never I hope: waitress does not log web traffic (i.e. HTTP requests) by default.

You can find detailed instructions on how to make waitress log requests in their official documentation here: Access Logging — waitress 2.0.0 documentation

Their simplest recipe for this is based on a package called TransLogger:

from mypackage import wsgiapp
from waitress import serve
from paste.translogger import TransLogger

serve(TransLogger(wsgiapp, setup_console_handler=False))

Good luck,
Uri