0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 01:10:45 -05:00
modules/project/SPT.Common/Models/Logging/EServerLogLevel.cs
2024-05-21 19:10:17 +01:00

13 lines
201 B
C#

namespace SPT.Common.Models.Logging
{
public enum EServerLogLevel
{
Error = 0,
Warn = 1,
Success = 2,
Info = 3,
Custom = 4,
Debug = 5
}
}