mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-31 01:48:49 -05:00
* added Sonarr search type option * updated test data * fixed duplicated Sonarr search items when using search type Season * added enhanced logging option along with Sonarr and Radarr enhanced logs * switched to ghcr.io
18 lines
347 B
C#
18 lines
347 B
C#
using Serilog.Events;
|
|
|
|
namespace Common.Configuration.Logging;
|
|
|
|
public class LoggingConfig : IConfig
|
|
{
|
|
public const string SectionName = "Logging";
|
|
|
|
public LogEventLevel LogLevel { get; set; }
|
|
|
|
public bool Enhanced { get; set; }
|
|
|
|
public FileLogConfig? File { get; set; }
|
|
|
|
public void Validate()
|
|
{
|
|
}
|
|
} |