First commit
This commit is contained in:
15
Logger/ILogger.cs
Normal file
15
Logger/ILogger.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user