This commit is contained in:
Evil Factory
2026-02-08 23:47:02 -03:00
parent e8bec96970
commit 70e98467e8
@@ -208,17 +208,17 @@ public partial class LoggerService : ILoggerService
public void LogDebug(string message, Color? color = null) public void LogDebug(string message, Color? color = null)
{ {
throw new NotImplementedException($"@EvilFactory will implement this at the end of development."); Log(message, color ?? Color.Purple);
} }
public void LogDebugWarning(string message) public void LogDebugWarning(string message)
{ {
throw new NotImplementedException($"@EvilFactory will implement this at the end of development."); Log(message, Color.Yellow);
} }
public void LogDebugError(string message) public void LogDebugError(string message)
{ {
throw new NotImplementedException($"@EvilFactory will implement this at the end of development."); Log(message, Color.Red);
} }
public void Dispose() { } public void Dispose() { }