MossyUpdater/Services/ILogger.cs
2025-05-31 00:06:18 +02:00

16 lines
No EOL
336 B
C#

namespace MossyUpdater.Services
{
public interface ILogger
{
Task LogInfoAsync(string message);
Task LogWarningAsync(string message);
Task LogErrorAsync(string message, Exception? exception = null);
}
public enum LogLevel
{
Info,
Warning,
Error
}
}