DTLib/DTLib/Logging/LogFormats/ILogFormat.cs

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);
}