ConsoleTraceListener.cs
34 lines
| 941 B
| text/x-csharp
|
CSharpLexer
cin
|
r36 | using System; | ||
using System.Collections.Generic; | ||||
using System.Linq; | ||||
using System.Text; | ||||
namespace Implab.Diagnostics { | ||||
cin
|
r40 | public class ConsoleTraceListener: TextListenerBase { | ||
cin
|
r36 | |||
static readonly object _consoleLock = new object(); | ||||
cin
|
r43 | public ConsoleTraceListener() | ||
: base(true) { | ||||
} | ||||
cin
|
r48 | public ConsoleTraceListener(bool global) | ||
: base(global) { | ||||
cin
|
r43 | |||
} | ||||
cin
|
r92 | protected override void WriteEntry(LogEventArgs args, EventText text, string channel) { | ||
cin
|
r40 | var msg = new StringBuilder(); | ||
cin
|
r36 | |||
cin
|
r40 | for (int i = 0; i < text.indent; i++) | ||
cin
|
r36 | msg.Append(" "); | ||
cin
|
r92 | msg.AppendFormat("[{0}]:{1}: {2}", args.ThreadId, channel, text.content); | ||
cin
|
r36 | |||
lock (_consoleLock) { | ||||
cin
|
r92 | Console.ForegroundColor = (ConsoleColor)(args.ThreadId % 15 + 1); | ||
Console.WriteLine(msg); | ||||
cin
|
r36 | } | ||
} | ||||
} | ||||
} | ||||