Mercurial > pub > ImplabNet
view Implab/Diagnostics/TraceEvent.cs @ 37:c2c043520724 diagnostics
working version of diagnostics logging
author | cin |
---|---|
date | Tue, 15 Apr 2014 02:46:18 +0400 |
parents | 313f708a50e9 |
children | fe33f4e02ad5 |
line wrap: on
line source
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Implab.Diagnostics { public class TraceEvent { public string Message { get; private set; } public TraceEventType EventType { get; private set; } public TraceEvent(TraceEventType type, string message) { EventType = type; Message = message; } public static TraceEvent Create(TraceEventType type, string format, params object[] args) { return new TraceEvent(type, String.Format(format, args)); } } }