diff --git a/src/main.rs b/src/main.rs index 8b0fbba..4ae840a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -144,5 +144,7 @@ async fn main() { .ok() .and_then(|s| s.parse::().ok()) .unwrap_or(3000); + + println!("Listening at http://{}:{} ...", &host, &port); warb::serve(routes).run((host, port)).await; }