1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-21 17:33:59 +00: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
commit ceb97cd6b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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