mirror of
https://github.com/actix/actix-web.git
synced 2024-12-22 08:07:18 +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
|
// start accept thread
|
||||||
for sock in &self.sockets {
|
for sock in &self.sockets {
|
||||||
for s in sock.iter() {
|
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
|
let rx = self
|
||||||
|
|
Loading…
Reference in a new issue