Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Spt/Logging/LogLevel.cs
T
2025-06-18 17:09:20 +00:00

13 lines
251 B
C#

namespace SPTarkov.Server.Core.Models.Spt.Logging;
public enum LogLevel
{
// The order are very important for the logger to calculate properly the logging level, do not change!
Fatal,
Error,
Warn,
Info,
Debug,
Trace,
}