We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2c2851 commit 0d70f0aCopy full SHA for 0d70f0a
src/main.rs
@@ -29,6 +29,8 @@ async fn main() -> Result<(), AppError> {
29
let listener = tokio::net::TcpListener::bind("127.0.0.1:3000")
30
.await?;
31
32
+ tracing::debug!("listening on {}", listener.local_addr()?);
33
+
34
Ok(
35
axum::serve(listener, app)
36
.with_graceful_shutdown(shutdown_signal())
0 commit comments