comparison Implab.Diagnostics.Interactive/TraceViewItem.cs @ 214:9c32ef39b851 v2

Added the time delta column to the interactive trace listener
author cin
date Fri, 14 Apr 2017 15:57:23 +0300
parents d9d794b61bb9
children
comparison
equal deleted inserted replaced
213:9ee78a345738 214:9c32ef39b851
7 namespace Implab.Diagnostics.Interactive { 7 namespace Implab.Diagnostics.Interactive {
8 public class TraceViewItem { 8 public class TraceViewItem {
9 string m_formattedValue; 9 string m_formattedValue;
10 10
11 public string Message { get; set; } 11 public string Message { get; set; }
12 public int TimeDelta { get; set; }
12 public int Timestamp { get; set; } 13 public int Timestamp { get; set; }
13 public int Indent { get; set; } 14 public int Indent { get; set; }
14 public int Thread { get; set; } 15 public int Thread { get; set; }
15 public string Channel { get; set; } 16 public string Channel { get; set; }
16 17