view Implab/Diagnostics/ILogWriter.cs @ 173:ecfece82ca11 ref20160224

Working on text scanner
author cin
date Tue, 15 Mar 2016 02:11:06 +0300
parents 04d4c92d0f28
children
line wrap: on
line source

using System;

namespace Implab.Diagnostics {
    public interface ILogWriter<in TEvent> {
        void Write(LogEventArgs args, TEvent entry);
    }
}