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