Mercurial > pub > ImplabNet
view Implab/Diagnostics/TraceEvent.cs @ 122:0c8685c8b56b v2
minor fixes and improvements of AsyncQueue, additional tests
author | cin |
---|---|
date | Mon, 12 Jan 2015 22:20:45 +0300 |
parents | dc4942d09e74 |
children | 6c49d02a9a05 |
line wrap: on
line source
using System; 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 override string ToString() { return EventType == TraceEventType.Information ? Message : String.Format("{0}: {1}", EventType, Message); } public static TraceEvent Create(TraceEventType type, string format, params object[] args) { return new TraceEvent(type, format == null ? String.Empty : String.Format(format, args)); } } }