Files
QuartZ-dump/GlobalShared/Logging/LoggingLevel.cs
2024-12-29 21:15:58 +01:00

20 lines
383 B
C#

namespace Global.Shared.Logging
{
public enum LoggingLevel
{
Trace,
Debug,
Info,
Warning,
Error,
Fatal
}
public static class LevelExtensions
{
public static bool IsOfLevel(this LoggingLevel level, LoggingLevel levelToCheck)
{
return (int)level <= (int)levelToCheck;
}
}
}