NLog.LogEventInfo.ToString C# (CSharp) Method

ToString() public method

Returns a string representation of this log event.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return "Log Event: Logger='" + this.LoggerName + "' Level=" + this.Level + " Message='" + this.FormattedMessage + "' SequenceID=" + this.SequenceID;
        }