diff Implab.Diagnostics.Interactive/InteractiveListener.cs @ 92:4c0e5ef99986 v2

rewritten tracing
author cin
date Wed, 22 Oct 2014 18:37:56 +0400
parents abe260860bd6
children 671f60cd0250
line wrap: on
line diff
--- a/Implab.Diagnostics.Interactive/InteractiveListener.cs	Tue Oct 14 09:30:45 2014 +0400
+++ b/Implab.Diagnostics.Interactive/InteractiveListener.cs	Wed Oct 22 18:37:56 2014 +0400
@@ -107,11 +107,11 @@
             base.Dispose(disposing);
         }
 
-        protected override void WriteEntry(TraceContext context, EventText text, string channel) {
+        protected override void WriteEntry(LogEventArgs args, EventText text, string channel) {
             var item = new TraceViewItem {
                 Indent = text.indent,
                 Message = text.content,
-                Thread = context.ThreadId,
+                Thread = args.ThreadId,
                 Channel = channel,
                 Timestamp = Environment.TickCount
             };