From 0d5324dd5ee3848bcad7c984828f54fee378786d Mon Sep 17 00:00:00 2001 From: benthecarman Date: Wed, 27 Mar 2024 19:07:13 -0500 Subject: [PATCH] Log when we run migrations --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 2bb0215..4b5aae8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -71,6 +71,7 @@ async fn main() -> anyhow::Result<()> { .expect("Could not build connection pool"); // run migrations + info!("Running migrations"); let mut connection = db_pool.get()?; connection .run_pending_migrations(MIGRATIONS)