diff --git a/src/main.rs b/src/main.rs index a74ea22..645a213 100644 --- a/src/main.rs +++ b/src/main.rs @@ -119,6 +119,6 @@ async fn fallback_route_unknown(req: Request) -> Response { /// basic handler that responds with a static string async fn root(test: AuthInfo) -> &'static str { - println!("Hello world, {test:?}"); + println!("AuthInfo: {test:?}"); "Hello, World!" }