Nerd_STF/Nerd_STF/LogSeverity.cs
2022-04-17 17:55:56 -04:00

11 lines
136 B
C#

namespace Nerd_STF;
public enum LogSeverity
{
Debug = 1,
Information = 2,
Warning = 4,
Error = 8,
Fatal = 16,
}