Skip to content

Commit 9a23862

Browse files
authored
Merge pull request #313 from Kobzol/link
Add http to link printed by bors
2 parents 43958c6 + 8bba95e commit 9a23862

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/bin/bors.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,10 @@ async fn webhook_server(state: ServerState) -> anyhow::Result<()> {
6565
.await
6666
.context("Cannot create TCP/IP server socket")?;
6767

68-
tracing::info!("Listening on 0.0.0.0:{}", listener.local_addr()?.port());
68+
tracing::info!(
69+
"Listening on http://0.0.0.0:{}",
70+
listener.local_addr()?.port()
71+
);
6972

7073
axum::serve(listener, app).await?;
7174
Ok(())

0 commit comments

Comments
 (0)