Zaz.Server.Advanced.Service.CommandsService.ConvertLogEntry C# (CSharp) Method

ConvertLogEntry() public static method

public static ConvertLogEntry ( ) : LogEntry>>.Expression
return LogEntry>>.Expression
        public static Expression<Func<ProgressEntry, LogEntry>> ConvertLogEntry()
        {
            return e => new LogEntry
            {
                Message = e.Message,
                Severity = e.Severity,
                Tags = e.Tags,
                Timestamp = e.Timestamp
            };
        }