11 lines
136 B
C#
11 lines
136 B
C#
namespace Nerd_STF;
|
|
|
|
public enum LogSeverity
|
|
{
|
|
Debug = 1,
|
|
Information = 2,
|
|
Warning = 4,
|
|
Error = 8,
|
|
Fatal = 16,
|
|
}
|