voile/Voile.Common/Logging/VoileLogLevel.cs
2026-01-20 16:59:40 +01:00

14 lines
207 B
C#

namespace Voile.Common.Logging;
public enum VoileLogLevel : int
{
OFF = 0,
FATAL = 100,
ERROR = 200,
WARN = 300,
INFO = 400,
DEBUG = 500,
TRACE = 600,
ALL = Int32.MaxValue
}