change to prim Ctors

This commit is contained in:
CWX
2025-01-18 19:17:35 +00:00
parent 41d2bfa1d9
commit 5c5a42b535
25 changed files with 551 additions and 973 deletions
+10
View File
@@ -15,6 +15,11 @@ public class MockLogger<T> : ISptLogger<T>
Console.WriteLine(data);
}
public void LogWithColor(string data, LogTextColor? textColor = null, LogBackgroundColor? backgroundColor = null, Exception? ex = null)
{
throw new NotImplementedException();
}
public void Success(string data, Exception? ex = null)
{
Console.WriteLine(data);
@@ -45,6 +50,11 @@ public class MockLogger<T> : ISptLogger<T>
Console.WriteLine(data);
}
public void WriteToLogFile(string body)
{
throw new NotImplementedException();
}
public void WriteToLogFile(object body)
{
Console.WriteLine(body);