view Implab/Diagnostics/IEventTextFormatter.cs @ 125:f803565868a4 v2

improved performance of promises
author cin
date Thu, 15 Jan 2015 12:09:20 +0300
parents 4c0e5ef99986
children
line wrap: on
line source

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