This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class LogMessage | |
{ | |
// This property moved to be overriden in derived classes | |
protected string _time = DateTime.UtcNow.ToString("dd/MM/yyyy HH:mm:ss.fff"); | |
public LogLevel Level { get; protected set; } | |
} | |
public class InfoLogMessage : LogMessage | |
{ |