##// END OF EJS Templates
code cleaunp
code cleaunp

File last commit:

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