From: Sung Yoon Whang Date: Mon, 3 Jun 2019 05:17:08 +0000 (-0700) Subject: Fix regression introduced by PR #299 (#302) X-Git-Tag: submit/tizen/20190813.035844~6^2^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f4b092159388f6ac79d4ad1549dfd8fe2016c772;p=platform%2Fcore%2Fdotnet%2Fdiagnostics.git Fix regression introduced by PR #299 (#302) --- diff --git a/src/Tools/dotnet-counters/ConsoleWriter.cs b/src/Tools/dotnet-counters/ConsoleWriter.cs index b681dec56..e4237aa1f 100644 --- a/src/Tools/dotnet-counters/ConsoleWriter.cs +++ b/src/Tools/dotnet-counters/ConsoleWriter.cs @@ -88,7 +88,7 @@ namespace Microsoft.Diagnostics.Tools.Counters // If it's from an unknown provider, just append it at the end. if (!unknownProvidersRowNum.ContainsKey(providerName)) { - knownProvidersRowNum[providerName] = maxRow + 1; + unknownProvidersRowNum[providerName] = maxRow + 1; Console.SetCursorPosition(0, maxRow); Console.WriteLine($"[{providerName}]"); maxRow += 1;