Add even nicer startup message

This commit is contained in:
Joshua Boniface 2019-07-07 15:46:38 -04:00
parent c9bad6edf9
commit 771c193343
1 changed files with 1 additions and 1 deletions

View File

@ -969,5 +969,5 @@ else:
# Run the ?WSGI server without SSL
http_server = gevent.pywsgi.WSGIServer((config['listen_address'], config['listen_port']), api)
print('Starting PyWSGI server')
print('Starting PyWSGI server at {}:{} with SSL={}, Authentication={}'.format(config['listen_address'], config['listen_port'], config['ssl_enabled'], config['auth_enabled']))
http_server.serve_forever()