mirror of
https://github.com/bitwarden/server
synced 2025-12-06 00:03:34 +00:00
9 lines
202 B
C#
9 lines
202 B
C#
using Serilog.Events;
|
|
|
|
namespace Bit.Core.Settings.LoggingSettings;
|
|
|
|
public class SsoLogLevelSettings : ISsoLogLevelSettings
|
|
{
|
|
public LogEventLevel Default { get; set; } = LogEventLevel.Error;
|
|
}
|