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.
2 parents 43958c6 + 8bba95e commit 9a23862Copy full SHA for 9a23862
1 file changed
src/bin/bors.rs
@@ -65,7 +65,10 @@ async fn webhook_server(state: ServerState) -> anyhow::Result<()> {
65
.await
66
.context("Cannot create TCP/IP server socket")?;
67
68
- tracing::info!("Listening on 0.0.0.0:{}", listener.local_addr()?.port());
+ tracing::info!(
69
+ "Listening on http://0.0.0.0:{}",
70
+ listener.local_addr()?.port()
71
+ );
72
73
axum::serve(listener, app).await?;
74
Ok(())
0 commit comments