namespace Implab.Diagnostics { public class LogEventArgs : LogEventArgs { public TEvent Value { get; private set; } public LogEventArgs(TEvent value,object channel, int threadId, LogicalOperation operation, int timeOffset) : base(channel, threadId, operation, timeOffset) { Value = value; } } }