Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Utils/Logger/SptLogMessage.cs
T
2025-04-24 16:29:36 +01:00

17 lines
431 B
C#

using SPTarkov.Server.Core.Models.Logging;
using LogLevel = SPTarkov.Server.Core.Models.Spt.Logging.LogLevel;
namespace SPTarkov.Server.Core.Utils.Logger;
public record SptLogMessage(
string Logger,
DateTime LogTime,
LogLevel LogLevel,
int threadId,
string? threadName,
string Message,
Exception? Exception = null,
LogTextColor? TextColor = null,
LogBackgroundColor? BackgroundColor = null
);