Files
homework-backend/Logger/ILogger.cs
2026-03-28 21:49:58 +01:00

16 lines
356 B
C#

namespace Logger;
/// <summary>
/// Interface for logging functionality
/// </summary>
public interface ILogger
{
void Trace(string message);
void Debug(string message);
void Info(string message);
void Warning(string message);
void Error(string message);
void Fatal(string message);
void Log(LogLevel level, string message);
}