DotBased/DotBased/Logging/LogSeverity.cs
2024-05-04 17:30:01 +02:00

12 lines
163 B
C#

namespace DotBased.Logging;
public enum LogSeverity
{
Verbose = 0,
Trace = 1,
Debug = 2,
Info = 3,
Warning = 4,
Error = 5,
Fatal = 6
}