mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 07:50:46 -05:00
13 lines
201 B
C#
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
|
|
}
|
|
}
|