1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-22 13:45:13 +02:00

Merge pull request #482 from 0x1793d1/master

Fix server startup log message
This commit is contained in:
Nikolay Kim
2018-08-24 20:53:45 -07:00
committed by GitHub

View File

@@ -217,7 +217,7 @@ impl Server {
// start accept thread
for sock in &self.sockets {
for s in sock.iter() {
info!("Starting server on http://{:?}", s.1.local_addr().ok());
info!("Starting server on http://{}", s.1.local_addr().unwrap());
}
}
let rx = self