Files
SPT-Server-Build/Core/Models/Spt/Logging/SptLogger.cs
T
2025-01-08 13:41:25 +00:00

12 lines
622 B
C#

namespace Core.Models.Spt.Logging;
public class SptLogger
{
public object Error { get; set; } // error: (msg: string | Record<string, unknown>) => void;
public object Warn { get; set; } // warn: (msg: string | Record<string, unknown>) => void;
public object Succ { get; set; } // succ?: (msg: string | Record<string, unknown>) => void;
public object Info { get; set; } // info: (msg: string | Record<string, unknown>) => void;
public object Debug { get; set; } // debug: (msg: string | Record<string, unknown>) => void;
}
// TODO: needs to be reimplemented however we want to do it in this project