From c0fb1915816f9cf87ed38ad522bf02bd1488dae4 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 13 Dec 2024 04:33:50 +0100 Subject: [PATCH] `rdserver`: Mention what server is being started in logs --- acrate_rdserver/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acrate_rdserver/src/main.rs b/acrate_rdserver/src/main.rs index 60dffed..20acb07 100644 --- a/acrate_rdserver/src/main.rs +++ b/acrate_rdserver/src/main.rs @@ -32,7 +32,7 @@ async fn main() -> anyhow::Result { .context("failed to bind listener to address")?; log::trace!("Tokio listener bound to: {bind_address}"); - log::info!("Starting server..."); + log::info!("Starting rdserver web server..."); axum::serve(listener, app) .await .context("server exited with error")?;