Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions bitwarden_license/src/Sso/appsettings.Production.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,22 @@
"ValidateCertificates": false
}
}
},
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

logic: Default log level set to 'Debug' in production environment may generate excessive logs and impact performance.

"System": "Information",
"Microsoft": "Information"
},
"Console": {
"IncludeScopes": true,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

style: IncludeScopes set to true for console, but false for general logging. Ensure this is intentional.

"LogLevel": {
"Default": "Warning",
"System": "Warning",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
}
}
}