view Implab/Diagnostics/ConsoleTraceListener.cs @ 121:62d2f1e98c4e v2

working version of AsyncQueue and batch operations tests
author cin
date Mon, 12 Jan 2015 18:19:41 +0300
parents 1b7ebcc52e5a
children 6c49d02a9a05
line wrap: on
line source

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);
            }
        }
    }
}