view Implab/Diagnostics/ILogWriter.cs @ 218:babe55c34931 v2

Trace logical operations in the correct channel
author cin
date Thu, 04 May 2017 02:17:53 +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);
    }
}