EasyFarm.Logging.LogEntry.LogEntry C# (CSharp) Method

LogEntry() public method

public LogEntry ( LoggingEventType severity, string message, Exception exception = null ) : System
severity LoggingEventType
message string
exception System.Exception
return System
        public LogEntry(LoggingEventType severity, string message, Exception exception = null)
        {
            Severity = severity;
            Message = message;
            Exception = exception;
        }