mirror of https://github.com/Radarr/Radarr
12 lines
170 B
C#
12 lines
170 B
C#
|
namespace NzbDrone.Core.Instrumentation
|
|||
|
{
|
|||
|
public enum LogLevel
|
|||
|
{
|
|||
|
Trace,
|
|||
|
Debug,
|
|||
|
Info,
|
|||
|
Warn,
|
|||
|
Error,
|
|||
|
Fatal
|
|||
|
}
|
|||
|
}
|