summaryrefslogtreecommitdiff
path: root/src/db.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/db.rs')
-rw-r--r--src/db.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db.rs b/src/db.rs
index b74550b..4a9e9a7 100644
--- a/src/db.rs
+++ b/src/db.rs
@@ -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);
}
});