13 lines
201 B
C#
13 lines
201 B
C#
namespace Types.Models.Spt.Logging;
|
|
|
|
public enum LogLevel
|
|
{
|
|
ERROR = 0,
|
|
WARN = 1,
|
|
SUCCESS = 2,
|
|
INFO = 3,
|
|
CUSTOM = 4,
|
|
DEBUG = 5
|
|
}
|
|
|
|
// TODO: needs to be moved to enums namespace |