comparison Implab/Diagnostics/LogEventArgsT.cs @ 134:04d4c92d0f28 v2

Improved logging
author cin
date Wed, 11 Feb 2015 02:12:15 +0300
parents 4c0e5ef99986
children d45bdf510514
comparison
equal deleted inserted replaced
133:6c49d02a9a05 134:04d4c92d0f28
3 public TEvent Value { 3 public TEvent Value {
4 get; 4 get;
5 private set; 5 private set;
6 } 6 }
7 7
8 public LogEventArgs(TEvent value, int threadId, LogicalOperation operation, int timeOffset) : base(threadId, operation, timeOffset) { 8 public LogEventArgs(TEvent value,string channelName, int threadId, LogicalOperation operation, int timeOffset) : base(channelName, threadId, operation, timeOffset) {
9 Value = value; 9 Value = value;
10 } 10 }
11 } 11 }
12 } 12 }
13 13