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”