WebSockets: log hostname and listen-port

This commit is contained in:
Robin Gareus 2020-11-23 20:05:04 +01:00
parent 80e3c191e4
commit ce43161d4e
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

@ -150,6 +150,13 @@ WebsocketsServer::start ()
}
#endif
PBD::info << "ArdourWebsockets: listening on: http://"
<< lws_canonical_hostname (_lws_context)
<< ":"
<< std::dec << (int) WEBSOCKET_LISTEN_PORT
<< "/"
<< endmsg;
return 0;
}