diff --git a/src/db.rs b/src/db.rs index f30f8f1..af4e716 100644 --- a/src/db.rs +++ b/src/db.rs @@ -28,9 +28,6 @@ impl Database { pub async fn new(config: &DatabaseConfig) -> eyre::Result { let connection_string = config.to_connection_string(); - // TODO: Remove this! - tracing::info!("Connecting to database: {}", connection_string); - let pool = loop { if !Postgres::database_exists(&connection_string).await? { Postgres::create_database(&connection_string).await?;