From 37c85c6debc24b85bc915351c734653c0dbe4dcf Mon Sep 17 00:00:00 2001 From: sneakernuts <671942+sneakernuts@users.noreply.github.com> Date: Thu, 10 Aug 2023 05:29:56 -0600 Subject: [PATCH] added default logging --- .../src/Sso/appsettings.Production.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/bitwarden_license/src/Sso/appsettings.Production.json b/bitwarden_license/src/Sso/appsettings.Production.json index d2009cb3b845..79fc0f62152b 100644 --- a/bitwarden_license/src/Sso/appsettings.Production.json +++ b/bitwarden_license/src/Sso/appsettings.Production.json @@ -27,5 +27,22 @@ "ValidateCertificates": false } } + }, + "Logging": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + }, + "Console": { + "IncludeScopes": true, + "LogLevel": { + "Default": "Warning", + "System": "Warning", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + } } }