DTLib/DTLib.Logging/Loggers/ILogger.cs
2022-11-17 18:27:43 +06:00

9 lines
271 B
C#

namespace DTLib.Logging.New;
public interface ILogger : IDisposable
{
ILogFormat Format { get; }
void Log(string context, LogSeverity severity, object message);
void Log(string context, LogSeverity severity, object message, ILogFormat format);
}