From b23f7bac277770efafd55e42c45e8291f44668af Mon Sep 17 00:00:00 2001 From: Kevin Matsubara Date: Tue, 25 Mar 2025 15:00:28 +0100 Subject: [PATCH] Add additional logging information. --- ServerManagement/appsettings.Development.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ServerManagement/appsettings.Development.json b/ServerManagement/appsettings.Development.json index 0c208ae..1257973 100644 --- a/ServerManagement/appsettings.Development.json +++ b/ServerManagement/appsettings.Development.json @@ -1,8 +1,11 @@ { + "DetailedErrors": true, "Logging": { "LogLevel": { "Default": "Information", - "Microsoft.AspNetCore": "Warning" + "Microsoft.AspNetCore": "Warning", + "Microsoft.Hosting.Lifetime": "Information", + "Microsoft.AspNetCore.SignalR": "Debug" } } }