From 529c1eef2b26fea9e95ef70d6d229d032f955c8a Mon Sep 17 00:00:00 2001 From: Christbru Date: Sat, 18 Oct 2025 23:57:20 -0500 Subject: [PATCH] Eliminate deploytest branch and remove the database url from the info logs --- rust-engine/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-engine/src/main.rs b/rust-engine/src/main.rs index dfcce04..6a15672 100644 --- a/rust-engine/src/main.rs +++ b/rust-engine/src/main.rs @@ -29,7 +29,7 @@ async fn main() -> Result<(), Box> { .unwrap_or_else(|_| "mysql://astraadmin:password@mysql:3306/astra".to_string()); info!("Starting Rust Engine..."); - info!("Connecting to database: {}", database_url); + // info!("Connecting to database: {}", database_url); // Connect to database let pool = match MySqlPool::connect(&database_url).await {