mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 22:23:18 +08:00
9 lines
206 B
C#
9 lines
206 B
C#
using Serilog.Events;
|
|
|
|
namespace Bit.Core.Settings.LoggingSettings;
|
|
|
|
public class IconsLogLevelSettings : IIconsLogLevelSettings
|
|
{
|
|
public LogEventLevel Default { get; set; } = LogEventLevel.Error;
|
|
}
|