Mercurial > pub > ImplabNet
view Implab/Diagnostics/TraceEvent.cs @ 67:b4c2454d208e
mono
author | cin |
---|---|
date | Fri, 22 Aug 2014 17:47:20 +0400 |
parents | edf0bc558596 |
children | dc4942d09e74 |
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 override string ToString() { if (EventType == TraceEventType.Information) return Message; else return 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)); } } }