Mercurial > pub > ImplabNet
view Implab/Diagnostics/ILogWriter.cs @ 216:1e082fb67a46 v2
Fixed component container
author | cin |
---|---|
date | Tue, 25 Apr 2017 19:51:33 +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); } }