From 21f76f2962c7894d77386d1e51d7aa7f8ec5cff1 Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Mon, 21 Apr 2025 12:51:00 -0500 Subject: [PATCH] chg: No need to print public uri with port when custom uri is passed --- actix/src/main.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/actix/src/main.rs b/actix/src/main.rs index 31d6575..8b62f22 100644 --- a/actix/src/main.rs +++ b/actix/src/main.rs @@ -63,15 +63,9 @@ async fn main() -> Result<()> { // Set the site_url without the quotes env::set_var("site_url", url); eprintln!("WARN: The site_url environment variable is encapsulated by quotes. Automatically adjusting to {}", url); - - // Tell the user what URI the server will respond with - eprintln!("INFO: Public URI is: {url}:{port}.") } else { // No issues eprintln!("INFO: Configured Site URL is: {site_url}."); - - // Tell the user what URI the server will respond with - eprintln!("INFO: Public URI is: {site_url}:{port}.") } } else { // Site URL is not configured