Mercurial > pub > ImplabNet
view Implab/Diagnostics/ILogWriter.cs @ 142:2100965eb97f v2
fixed JSONWriter handling Infinity, NaN and locale aware number formatting
author | cin |
---|---|
date | Wed, 04 Mar 2015 03:10:38 +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); } }