Mercurial > pub > ImplabNet
annotate Implab/Diagnostics/ConsoleTraceListener.cs @ 241:c19cee55e85e v2-1
close v2-1
bad idea
author | cin |
---|---|
date | Thu, 10 Nov 2016 00:31:34 +0300 |
parents | 1b7ebcc52e5a |
children | 6c49d02a9a05 |
rev | line source |
---|---|
36 | 1 using System; |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 | |
6 namespace Implab.Diagnostics { | |
40 | 7 public class ConsoleTraceListener: TextListenerBase { |
36 | 8 |
9 static readonly object _consoleLock = new object(); | |
10 | |
43
7c2369f580b8
improved tracing, TextListenerBase can be bound to logical operation scope.
cin
parents:
40
diff
changeset
|
11 public ConsoleTraceListener() |
7c2369f580b8
improved tracing, TextListenerBase can be bound to logical operation scope.
cin
parents:
40
diff
changeset
|
12 : base(true) { |
7c2369f580b8
improved tracing, TextListenerBase can be bound to logical operation scope.
cin
parents:
40
diff
changeset
|
13 |
7c2369f580b8
improved tracing, TextListenerBase can be bound to logical operation scope.
cin
parents:
40
diff
changeset
|
14 } |
7c2369f580b8
improved tracing, TextListenerBase can be bound to logical operation scope.
cin
parents:
40
diff
changeset
|
15 |
48 | 16 public ConsoleTraceListener(bool global) |
17 : base(global) { | |
43
7c2369f580b8
improved tracing, TextListenerBase can be bound to logical operation scope.
cin
parents:
40
diff
changeset
|
18 |
7c2369f580b8
improved tracing, TextListenerBase can be bound to logical operation scope.
cin
parents:
40
diff
changeset
|
19 } |
7c2369f580b8
improved tracing, TextListenerBase can be bound to logical operation scope.
cin
parents:
40
diff
changeset
|
20 |
92 | 21 protected override void WriteEntry(LogEventArgs args, EventText text, string channel) { |
40 | 22 var msg = new StringBuilder(); |
36 | 23 |
40 | 24 for (int i = 0; i < text.indent; i++) |
36 | 25 msg.Append(" "); |
92 | 26 msg.AppendFormat("[{0}]:{1}: {2}", args.ThreadId, channel, text.content); |
36 | 27 |
28 lock (_consoleLock) { | |
109 | 29 //Console.ForegroundColor = (ConsoleColor)(args.ThreadId % 15 + 1); |
92 | 30 Console.WriteLine(msg); |
36 | 31 } |
32 } | |
33 } | |
34 } |