Skip to content

Commit 4119986

Browse files
committed
Logging tweak
1 parent 8ba1a18 commit 4119986

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/http.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ pub async fn run_server(config: Config) -> anyhow::Result<()> {
154154
debug!("Spawning API web server");
155155
tasks.spawn(async move {
156156
let addr = SocketAddr::new(IpAddr::V4(Ipv4Addr::UNSPECIFIED), config.http_port);
157-
info!("API web server is listening on {addr}");
158157
let listener = TcpListener::bind(&addr).await?;
158+
info!("API web server is listening on {addr}");
159159
serve(
160160
listener,
161161
app.into_make_service_with_connect_info::<SocketAddr>(),

0 commit comments

Comments
 (0)