mirror of
https://github.com/bitwarden/server.git
synced 2026-02-05 08:33:10 +08:00
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();
|
|
}
|