From 14a9ad0c85b0ee6f190323a8903d1239b8968d22 Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Mon, 28 Nov 2022 13:13:56 -0500 Subject: nix: write nixos test configuration - filter rust sources to avoid spurious rebuilds - fix accidental circular reference in nix flake - fix postgres startup scripts and behavior - thulani logger doesn't log to file by default --- src/db/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/db') diff --git a/src/db/mod.rs b/src/db/mod.rs index 483665e..476d9d9 100644 --- a/src/db/mod.rs +++ b/src/db/mod.rs @@ -54,6 +54,7 @@ pub fn connection() -> Result { MIGRATE.call_once(|| { log::info!("running migrations"); conn.run_pending_migrations(MIGRATIONS).expect("failed running migrations"); + log::info!("migrations complete"); }); conn -- cgit v1.3.1