view Implab/Diagnostics/ILogWriter.cs @ 217:6efb77590b15 v2

More verbose output with TextFileListener
author cin
date Tue, 02 May 2017 17:33:04 +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);
    }
}