Prepend http:// to address:port in launch message.

This commit is contained in:
Sergio Benitez 2016-12-22 05:27:23 -08:00
parent 2c26777c75
commit 7d97bf04ea
1 changed files with 2 additions and 1 deletions

View File

@ -474,8 +474,9 @@ impl Rocket {
}
};
info!("🚀 {} {}...",
info!("🚀 {} {}{}...",
White.paint("Rocket has launched from"),
White.bold().paint("http://"),
White.bold().paint(&full_addr));
server.handle(self).unwrap();