Files
e1lama-simple/NaiveHttpServer/ILogger.cs
2023-07-27 01:47:59 +04:00

16 lines
350 B
C#

using System;
namespace NaiveHttpServer
{
public interface ILogger
{
void Error(string message, Exception? exception = null);
void Warning(string message, Exception? exception = null);
void Info(string message, Exception? exception = null);
void Debug(string message, Exception? exception = null);
}
}