diff --git a/src/Tools/dotnet-counters/Exporters/ConsoleWriter.cs b/src/Tools/dotnet-counters/Exporters/ConsoleWriter.cs index c1c36f1543..de578d5035 100644 --- a/src/Tools/dotnet-counters/Exporters/ConsoleWriter.cs +++ b/src/Tools/dotnet-counters/Exporters/ConsoleWriter.cs @@ -114,7 +114,7 @@ public void AssignRowsAndInitializeDisplay() counter.Row = row++; if (counter.RenderValueInline) { - Console.WriteLine($"{name}{FormatValue(counter.LastValue)}"); + Console.WriteLine($"{name} {FormatValue(counter.LastValue)}"); } else { @@ -122,7 +122,7 @@ public void AssignRowsAndInitializeDisplay() foreach (ObservedTagSet tagSet in counter.TagSets.Values.OrderBy(t => t.Tags)) { string tagName = MakeFixedWidth($"{new string(' ', 2 * Indent)}{tagSet.Tags}", Indent + maxNameLength); - Console.WriteLine($"{tagName}{FormatValue(tagSet.LastValue)}"); + Console.WriteLine($"{tagName} {FormatValue(tagSet.LastValue)}"); tagSet.Row = row++; } }