mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
15 lines
447 B
C#
15 lines
447 B
C#
namespace NzbDrone.Common.Options;
|
|
|
|
public class LogOptions
|
|
{
|
|
public string Level { get; set; }
|
|
public bool? FilterSentryEvents { get; set; }
|
|
public int? Rotate { get; set; }
|
|
public bool? Sql { get; set; }
|
|
public string ConsoleLevel { get; set; }
|
|
public bool? AnalyticsEnabled { get; set; }
|
|
public string SyslogServer { get; set; }
|
|
public int? SyslogPort { get; set; }
|
|
public string SyslogLevel { get; set; }
|
|
}
|