Mercurial > pub > ImplabNet
diff Implab/Diagnostics/IEventTextFormatter.cs @ 92:4c0e5ef99986 v2
rewritten tracing
author | cin |
---|---|
date | Wed, 22 Oct 2014 18:37:56 +0400 |
parents | fe33f4e02ad5 |
children |
line wrap: on
line diff
--- a/Implab/Diagnostics/IEventTextFormatter.cs Tue Oct 14 09:30:45 2014 +0400 +++ b/Implab/Diagnostics/IEventTextFormatter.cs Wed Oct 22 18:37:56 2014 +0400 @@ -1,10 +1,5 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; - -namespace Implab.Diagnostics { +namespace Implab.Diagnostics { public interface IEventTextFormatter<in TEvent> { - EventText Format(TraceContext context, TEvent data); + EventText Format(LogEventArgs args, TEvent data); } }