mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 07:30:43 -05:00
13 lines
201 B
C#
13 lines
201 B
C#
|
namespace Aki.Common.Models.Logging
|
|||
|
{
|
|||
|
public enum EServerLogLevel
|
|||
|
{
|
|||
|
Error = 0,
|
|||
|
Warn = 1,
|
|||
|
Success = 2,
|
|||
|
Info = 3,
|
|||
|
Custom = 4,
|
|||
|
Debug = 5
|
|||
|
}
|
|||
|
}
|