1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-30 20:04:26 +02:00

Merge pull request #106 from niklasf/starting-url

give a url in the log when starting
This commit is contained in:
Nikolay Kim
2018-03-06 11:41:42 -08:00
committed by GitHub

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()));
}