DTLib/DTLib.Logging/LogFormats/ILogFormat.cs
2023-06-11 08:00:25 +06:00

10 lines
262 B
C#

namespace DTLib.Logging;
public interface ILogFormat
{
bool PrintTimeStamp { get; set; }
bool PrintContext { get; set; }
bool PrintSeverity { get; set; }
string CreateMessage(string context, LogSeverity severity, object message);
}