mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-24 21:58:45 -05:00
21 lines
474 B
C#
21 lines
474 B
C#
using Microsoft.Extensions.Configuration;
|
|
using Serilog.Events;
|
|
|
|
namespace Common.Configuration.Logging;
|
|
|
|
public class LoggingConfig : IConfig
|
|
{
|
|
public const string SectionName = "Logging";
|
|
|
|
public LogEventLevel LogLevel { get; set; } = LogEventLevel.Information;
|
|
|
|
public bool Enhanced { get; set; }
|
|
|
|
public FileLogConfig? File { get; set; }
|
|
|
|
public SignalRLogConfig? SignalR { get; set; }
|
|
|
|
public void Validate()
|
|
{
|
|
}
|
|
} |