From 79fa482b5b3c9f932485f34445d58c9cc8ead72c Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 12 Dec 2024 04:00:04 +0100 Subject: [PATCH] `rdserver`: Upgrade "starting server" log to info --- 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 ac14b4a..60dffed 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::debug!("Starting server..."); + log::info!("Starting server..."); axum::serve(listener, app) .await .context("server exited with error")?;