Files
SPT-Server-Build/Core/Models/Spt/Logging/SptLogger.cs
T

12 lines
627 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