Mercurial > pub > ImplabNet
view Implab/Diagnostics/ILogWriter.cs @ 228:6fa235c5a760 v2
Rewritten JsonScanner, JsonParser, fixed naming style
author | cin |
---|---|
date | Tue, 12 Sep 2017 01:19:12 +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); } }