annotate Implab/Diagnostics/IEventTextFormatter.cs @ 93:dc4942d09e74 v2

improved tracing added the application components container MTComponentContainer.AppContainer
author cin
date Thu, 23 Oct 2014 01:13:57 +0400
parents 4c0e5ef99986
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
92
4c0e5ef99986 rewritten tracing
cin
parents: 40
diff changeset
1 namespace Implab.Diagnostics {
40
fe33f4e02ad5 improved tracing
cin
parents:
diff changeset
2 public interface IEventTextFormatter<in TEvent> {
92
4c0e5ef99986 rewritten tracing
cin
parents: 40
diff changeset
3 EventText Format(LogEventArgs args, TEvent data);
40
fe33f4e02ad5 improved tracing
cin
parents:
diff changeset
4 }
fe33f4e02ad5 improved tracing
cin
parents:
diff changeset
5 }