1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-21 17:33:59 +00:00

give a url in the log when starting

This commit is contained in:
Niklas Fiekas 2018-03-06 20:37:18 +01:00
parent a0e6313d56
commit 85b650048d

View file

@ -281,7 +281,7 @@ impl<H: IntoHttpHandler> HttpServer<H>
// start acceptors threads
for (addr, sock) in addrs {
info!("Starting http server on {}", addr);
info!("Starting server on http://{}", addr);
self.accept.push(
start_accept_thread(sock, addr, self.backlog, workers.clone()));
}
@ -343,7 +343,7 @@ impl<H: IntoHttpHandler> HttpServer<H>
// start acceptors threads
for (addr, sock) in addrs {
info!("Starting tls http server on {}", addr);
info!("Starting server on https://{}", addr);
self.accept.push(
start_accept_thread(sock, addr, self.backlog, workers.clone()));
}
@ -387,7 +387,7 @@ impl<H: IntoHttpHandler> HttpServer<H>
// start acceptors threads
for (addr, sock) in addrs {
info!("Starting tls http server on {}", addr);
info!("Starting server on https://{}", addr);
self.accept.push(
start_accept_thread(sock, addr, self.backlog, workers.clone()));
}
@ -420,7 +420,7 @@ impl<H: IntoHttpHandler> HttpServer<H>
// start acceptors threads
for (addr, sock) in addrs {
info!("Starting http server on {}", addr);
info!("Starting server on http://{}", addr);
self.accept.push(
start_accept_thread(sock, addr, self.backlog, workers.clone()));
}