diff options
Diffstat (limited to 'src/db.rs')
-rw-r--r-- | src/db.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ pub async fn setup() -> Result<Client, AppError> { // Spawn a new task to run the connection to the database tokio::spawn(async move { if let Err(e) = connection.await { - eprintln!("Database connection error: {}", e); + tracing::error!("Database connection error: {}", e); } }); |