From 7adce77063c11e6d9236aa510d522edfcedf885f Mon Sep 17 00:00:00 2001 From: Anatolii Grynchuk Date: Sat, 2 May 2026 02:10:57 +0300 Subject: [PATCH] fix: ensure Microsoft.Hosting.Lifetime logs at Information in Development Allows 'Now listening on: http://...' URLs to appear in console output Ref: IT-634 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- HrynCo.NotificationService.Web/appsettings.Development.json | 1 + 1 file changed, 1 insertion(+) diff --git a/HrynCo.NotificationService.Web/appsettings.Development.json b/HrynCo.NotificationService.Web/appsettings.Development.json index 1a5b409..4e07284 100644 --- a/HrynCo.NotificationService.Web/appsettings.Development.json +++ b/HrynCo.NotificationService.Web/appsettings.Development.json @@ -7,6 +7,7 @@ "Default": "Debug", "Override": { "Microsoft": "Information", + "Microsoft.Hosting.Lifetime": "Information", "Microsoft.EntityFrameworkCore": "Information", "Microsoft.AspNetCore": "Information" }