Skip to content

Commit

Permalink
making the log info
Browse files Browse the repository at this point in the history
  • Loading branch information
m4salah committed Dec 30, 2023
1 parent 4c74b9b commit fd8f9c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
// start the server
// run our app with hyper, listening globally on port PORT
let listener = tokio::net::TcpListener::bind(&addr).await.unwrap();
tracing::debug!("listening on {}", addr);
tracing::info!("listening on {}", addr);
axum::serve(
listener,
app(pool, config.geocoding_api_key).into_make_service_with_connect_info::<SocketAddr>(),
Expand Down

0 comments on commit fd8f9c3

Please sign in to comment.