Skip to content
Prev Previous commit
Changed the default value for _maxNameLength
  • Loading branch information
dramos020 committed Sep 12, 2022
commit 4f59900fbbecc6822ced3c15c7f1322e684aa91b
2 changes: 1 addition & 1 deletion src/Tools/dotnet-counters/Exporters/ConsoleWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public ObservedTagSet(string tags)
private const int Indent = 4; // Counter name indent size.
private const int CounterValueLength = 15;

private int _maxNameLength = 60; // Allow room for 60 character counter names by default.
private int _maxNameLength = 0;
private int _statusRow; // Row # of where we print the status of dotnet-counters
private int _topRow;
private bool _paused = false;
Expand Down