mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-05 13:20:32 -05: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; }
|
|
}
|