Mercurial > pub > ImplabNet
comparison Implab.Diagnostics.Interactive/TraceViewItem.cs @ 48:d9d794b61bb9 interactive logger
Interactive tracing
Improved working with tracing contexts
author | cin |
---|---|
date | Fri, 18 Apr 2014 12:34:45 +0400 |
parents | b181f7bcb259 |
children | 9c32ef39b851 |
comparison
equal
deleted
inserted
replaced
47:b181f7bcb259 | 48:d9d794b61bb9 |
---|---|
10 | 10 |
11 public string Message { get; set; } | 11 public string Message { get; set; } |
12 public int Timestamp { get; set; } | 12 public int Timestamp { get; set; } |
13 public int Indent { get; set; } | 13 public int Indent { get; set; } |
14 public int Thread { get; set; } | 14 public int Thread { get; set; } |
15 public string Channel { get; set; } | |
15 | 16 |
16 public string FormattedMessage { | 17 public string FormattedMessage { |
17 get { | 18 get { |
18 if (m_formattedValue == null) { | 19 if (m_formattedValue == null) { |
19 m_formattedValue = Message.Replace("\r",String.Empty).Replace("\n", " | "); | 20 m_formattedValue = Message.Replace("\r",String.Empty).Replace("\n", " | "); |