view Implab/Diagnostics/ILogWriter.cs @ 180:c32688129f14 ref20160224

refactoring complete, JSONParser rewritten
author cin
date Thu, 24 Mar 2016 02:30:46 +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);
    }
}