From 0f9911844099cd2c5a62cb26be70fd92f8e93f0b Mon Sep 17 00:00:00 2001 From: dave Date: Tue, 19 Mar 2024 00:13:02 +0100 Subject: [PATCH] test --- src/HeartTrackAPI/Utils/AppBootstrap.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/HeartTrackAPI/Utils/AppBootstrap.cs b/src/HeartTrackAPI/Utils/AppBootstrap.cs index 858caed..b0211ff 100644 --- a/src/HeartTrackAPI/Utils/AppBootstrap.cs +++ b/src/HeartTrackAPI/Utils/AppBootstrap.cs @@ -59,6 +59,7 @@ public class AppBootstrap(IConfiguration configuration) default: Console.WriteLine("====== RUNNING USING THE IN SQLITE DATABASE ======"); connectionString = Configuration.GetConnectionString("HeartTrackAuthConnection"); + Console.WriteLine(connectionString); if (!string.IsNullOrWhiteSpace(connectionString)) { services.AddDbContext(options => options.UseInMemoryDatabase("AuthDb"));