16 lines
199 B
C#
16 lines
199 B
C#
namespace Core.Models.Spt.Logging;
|
|
|
|
public enum LogLevel
|
|
{
|
|
Fatal,
|
|
Error,
|
|
Warn,
|
|
Success,
|
|
Info,
|
|
Custom,
|
|
Debug,
|
|
Trace
|
|
}
|
|
|
|
// TODO: needs to be moved to enums namespace
|