mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-04-05 05:51:27 +02:00
12 lines
163 B
C#
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
|
|
} |