mirror of
https://github.com/bitwarden/server.git
synced 2025-12-10 00:42:07 -06:00
* Add logging to token usages * Add settings manipulation of log levels * Maintain no logging for dev * Log exception causing Token failure in TryUnprotect * dotnet format 🤖 * Added deconstruction operator on new debug logs. * Split off log level settings into separate files * Improve log messages * dotnet format 🤖 * Fix token serialization * Final review notes Co-authored-by: Todd Martin <>
17 lines
1.1 KiB
C#
17 lines
1.1 KiB
C#
|
|
namespace Bit.Core.Settings.LoggingSettings;
|
|
|
|
public class LogLevelSettings : ILogLevelSettings
|
|
{
|
|
public IBillingLogLevelSettings BillingSettings { get; set; } = new BillingLogLevelSettings();
|
|
public IApiLogLevelSettings ApiSettings { get; set; } = new ApiLogLevelSettings();
|
|
public IIdentityLogLevelSettings IdentitySettings { get; set; } = new IdentityLogLevelSettings();
|
|
public IScimLogLevelSettings ScimSettings { get; set; } = new ScimLogLevelSettings();
|
|
public ISsoLogLevelSettings SsoSettings { get; set; } = new SsoLogLevelSettings();
|
|
public IAdminLogLevelSettings AdminSettings { get; set; } = new AdminLogLevelSettings();
|
|
public IEventsLogLevelSettings EventsSettings { get; set; } = new EventsLogLevelSettings();
|
|
public IEventsProcessorLogLevelSettings EventsProcessorSettings { get; set; } = new EventsProcessorLogLevelSettings();
|
|
public IIconsLogLevelSettings IconsSettings { get; set; } = new IconsLogLevelSettings();
|
|
public INotificationsLogLevelSettings NotificationsSettings { get; set; } = new NotificationsLogLevelSettings();
|
|
}
|