Mercurial > pub > ImplabNet
view Implab/Diagnostics/ILogWriter.cs @ 150:3258399cba83 v2
JSONWriter improvements
author | cin |
---|---|
date | Sat, 12 Dec 2015 22:12:44 +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); } }