view Implab/Diagnostics/IEventTextFormatter.cs @ 114:3fbc6eb93eb1 v2

minor changes
author cin
date Sun, 14 Dec 2014 22:39:13 +0100
parents 4c0e5ef99986
children
line wrap: on
line source

namespace Implab.Diagnostics {
    public interface IEventTextFormatter<in TEvent> {
        EventText Format(LogEventArgs args, TEvent data);
    }
}