1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-03 21:45:05 +00:00
Lidarr/NzbDrone.Core/Instrumentation/LogLevel.cs

12 lines
170 B
C#
Raw Normal View History

namespace NzbDrone.Core.Instrumentation
{
public enum LogLevel
{
Trace,
Debug,
Info,
Warn,
Error,
Fatal
}
}