63 lines
1.5 KiB
C#
63 lines
1.5 KiB
C#
using Core.Models.Logging;
|
|
using Core.Models.Spt.Logging;
|
|
using Core.Models.Utils;
|
|
using SptCommon.Annotations;
|
|
|
|
namespace HideoutCraftQuestIdGenerator;
|
|
|
|
[Injectable]
|
|
public class SptBasicLogger<T> : ISptLogger<T>
|
|
{
|
|
private readonly string categoryName;
|
|
public SptBasicLogger()
|
|
{
|
|
categoryName = typeof(T).Name;
|
|
}
|
|
|
|
public void LogWithColor(string data, LogTextColor? textColor = null, LogBackgroundColor? backgroundColor = null,
|
|
Exception? ex = null)
|
|
{
|
|
Console.WriteLine($"{categoryName}: {data}");
|
|
}
|
|
|
|
public void Success(string data, Exception? ex = null)
|
|
{
|
|
Console.WriteLine($"{categoryName}: {data}");
|
|
}
|
|
|
|
public void Error(string data, Exception? ex = null)
|
|
{
|
|
Console.WriteLine($"{categoryName}: {data}");
|
|
}
|
|
|
|
public void Warning(string data, Exception? ex = null)
|
|
{
|
|
Console.WriteLine($"{categoryName}: {data}");
|
|
}
|
|
|
|
public void Info(string data, Exception? ex = null)
|
|
{
|
|
Console.WriteLine($"{categoryName}: {data}");
|
|
}
|
|
|
|
public void Debug(string data, Exception? ex = null)
|
|
{
|
|
Console.WriteLine($"{categoryName}: {data}");
|
|
}
|
|
|
|
public void Critical(string data, Exception? ex = null)
|
|
{
|
|
Console.WriteLine($"{categoryName}: {data}");
|
|
}
|
|
|
|
public void WriteToLogFile(string body)
|
|
{
|
|
Console.WriteLine($"{categoryName}: {body}");
|
|
}
|
|
|
|
public bool IsLogEnabled(LogLevel level)
|
|
{
|
|
return true;
|
|
}
|
|
}
|