diff --git a/src/Tools/dotnet-counters/Exporters/ConsoleWriter.cs b/src/Tools/dotnet-counters/Exporters/ConsoleWriter.cs index c1c36f1543..7ce3d01e5c 100644 --- a/src/Tools/dotnet-counters/Exporters/ConsoleWriter.cs +++ b/src/Tools/dotnet-counters/Exporters/ConsoleWriter.cs @@ -196,7 +196,7 @@ public void CounterPayloadReceived(CounterPayload payload, bool pauseCmdSet) } int row = counter.RenderValueInline ? counter.Row : tagSet.Row; - Console.SetCursorPosition(Indent + maxNameLength + 1, row); + Console.SetCursorPosition(Indent + maxNameLength, row); Console.Write(FormatValue(payload.Value)); } }