annotate Implab/Diagnostics/IEventTextFormatter.cs @ 112:38d6a4db35d7 v2

fixed Promise.Error handler
author cin
date Wed, 19 Nov 2014 13:34:09 +0300
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 }