mirror of
https://github.com/actix/actix-web.git
synced 2024-12-21 23:56:35 +00:00
Merge pull request #482 from 0x1793d1/master
Fix server startup log message
This commit is contained in:
commit
d39dcc58cd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue