adjust starting info log to include http://

master
Tomáš Mládek 2021-04-21 16:02:59 +02:00
parent bdaaa5056e
commit b1591eebae
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ fn main() -> anyhow::Result<()> {
.unwrap()
.parse()
.expect("Incorrect bind format.");
info!("Starting server at: {}", &bind);
info!("Starting server at: http://{}", &bind);
let mutable_state = web::Data::new(MutableState {
garden_cache: Mutex::new(update_garden(directory, GardenCache::default())?),