From be8effeb18a1272dd3e03b07d7d41ffdb8e6249b Mon Sep 17 00:00:00 2001 From: Johannes Erwerle Date: Fri, 16 Sep 2022 09:26:17 +0200 Subject: [PATCH] webserver now prints the UI its running on --- src/bin/task6-rocket.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/task6-rocket.rs b/src/bin/task6-rocket.rs index fc10302..11dbae3 100644 --- a/src/bin/task6-rocket.rs +++ b/src/bin/task6-rocket.rs @@ -143,6 +143,8 @@ fn rocket() -> _ { let landmarks = load_landmarks(&args.landmarks); + println!("Listening on http://localhost:8000"); + rocket::build() .manage(GraphWrapper { graph: *graph,