diff --git a/src/db.rs b/src/db.rs index f2b9bee..d09d34e 100644 --- a/src/db.rs +++ b/src/db.rs @@ -48,7 +48,7 @@ impl ConnectionOptions { async fn connect(self) -> ServiceResult { let pool = match self { Self::Fresh(fresh) => { - println!("{}", fresh.url); + tracing::info!("DATABASE URL: {}", fresh.url); let mut connect_options = sqlx::postgres::PgConnectOptions::from_str(&fresh.url).unwrap(); if fresh.disable_logging {