Mercurial > pub > ImplabNet
comparison Implab/Diagnostics/IEventTextFormatter.cs @ 92:4c0e5ef99986 v2
rewritten tracing
author | cin |
---|---|
date | Wed, 22 Oct 2014 18:37:56 +0400 |
parents | fe33f4e02ad5 |
children |
comparison
equal
deleted
inserted
replaced
91:cdaaf4792c22 | 92:4c0e5ef99986 |
---|---|
1 using System; | 1 namespace Implab.Diagnostics { |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 | |
6 namespace Implab.Diagnostics { | |
7 public interface IEventTextFormatter<in TEvent> { | 2 public interface IEventTextFormatter<in TEvent> { |
8 EventText Format(TraceContext context, TEvent data); | 3 EventText Format(LogEventArgs args, TEvent data); |
9 } | 4 } |
10 } | 5 } |