##// END OF EJS Templates
initial work on interactive logger
initial work on interactive logger

File last commit:

r45:d10034588e38 interactive logger
r45:d10034588e38 interactive logger
Show More
TraceViewItem.cs
14 lines | 334 B | text/x-csharp | CSharpLexer
cin
initial work on interactive logger
r45 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Implab.Diagnostics.Interactive {
public struct TraceViewItem {
public string message;
public int timestamp;
public int indent;
public int thread;
}
}