14 lines
168 B
C#
14 lines
168 B
C#
namespace SPTarkov.Server.Core.Models.Spt.Logging;
|
|
|
|
public enum LogLevel
|
|
{
|
|
Fatal,
|
|
Error,
|
|
Warn,
|
|
Success,
|
|
Info,
|
|
Custom,
|
|
Debug,
|
|
Trace
|
|
}
|