chore: stop printing db url

This commit is contained in:
Aravinth Manivannan 2022-12-30 03:26:06 +05:30
parent 7eb622c29a
commit cd185c0d95
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
1 changed files with 0 additions and 1 deletions

View File

@ -50,7 +50,6 @@ impl ConnectionOptions {
async fn connect(self) -> ServiceResult<Database> {
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 {