Implemented logger.Success

This commit is contained in:
Chomp
2025-01-13 12:17:53 +00:00
parent f6930b5a3a
commit 64ccc033d4
3 changed files with 12 additions and 3 deletions
+5
View File
@@ -12,6 +12,11 @@ public class WebApplicationLogger : ILogger
_logger = provider.CreateLogger("SptLogger");
}
public void Success(string data)
{
_logger.LogInformation(data);
}
public void Error(string data)
{
_logger.LogError(data);