mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
427 B
16 lines
427 B
using Serilog.Core; |
|
|
|
namespace ErsatzTV.Core; |
|
|
|
public class LoggingLevelSwitches |
|
{ |
|
public LoggingLevelSwitch DefaultLevelSwitch { get; } = new(); |
|
|
|
public LoggingLevelSwitch ScanningLevelSwitch { get; } = new(); |
|
|
|
public LoggingLevelSwitch SchedulingLevelSwitch { get; } = new(); |
|
|
|
public LoggingLevelSwitch StreamingLevelSwitch { get; } = new(); |
|
|
|
public LoggingLevelSwitch HttpLevelSwitch { get; } = new(); |
|
}
|
|
|