Mercurial > pub > ImplabNet
comparison Implab/Diagnostics/IEventTextFormatter.cs @ 40:fe33f4e02ad5
improved tracing
added text listeners (file,console)
author | cin |
---|---|
date | Tue, 15 Apr 2014 17:52:09 +0400 |
parents | |
children | 4c0e5ef99986 |
comparison
equal
deleted
inserted
replaced
39:6498078ae368 | 40:fe33f4e02ad5 |
---|---|
1 using System; | |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 | |
6 namespace Implab.Diagnostics { | |
7 public interface IEventTextFormatter<in TEvent> { | |
8 EventText Format(TraceContext context, TEvent data); | |
9 } | |
10 } |