コード例 #1
0
ファイル: Program.cs プロジェクト: SteveHarveyUK/Blog
        static void Main()
        {
            oldCol = Console.ForegroundColor;
            SetConsoleCtrlHandler(ExitHandler, true);

            try
            {
                Console.WriteLine("**** Create EventSources ****");

                SourceA = MetricsFactory.GetCustomMetricsService("SourceA", 1.0, true);
                SourceB = MetricsFactory.GetCustomMetricsService("SourceB", 3.0, true);
                SourceC = MetricsFactory.GetCustomMetricsService("SourceC", 7.0, true);

                Console.WriteLine("**** Issue Description ****");
                Console.WriteLine(
                    "Each EventSource has is own Default Listener but it appears that ALL EventListeners get ALL EventCounter events.\r\n" +
                    "So rather than having a single highlight color per event to indicate the expected filtering,\r\n" +
                    "the following event logging will show multiple highlight colors within a single line:");
                Console.WriteLine("***************************");

                var random = new Random();
                for (int i = 0; i <= 40000; i++)
                {
                    SleepingBeauty(random.Next(10, 200));
                }

                Console.ReadKey();
            }
            finally
            {
                Console.ForegroundColor = oldCol;
            }
        }