File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Tools/dotnet-counters/Exporters Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -114,15 +114,15 @@ public void AssignRowsAndInitializeDisplay()
114114 counter . Row = row ++ ;
115115 if ( counter . RenderValueInline )
116116 {
117- Console . WriteLine ( $ "{ name } { FormatValue ( counter . LastValue ) } ") ;
117+ Console . WriteLine ( $ "{ name } { FormatValue ( counter . LastValue ) } ") ;
118118 }
119119 else
120120 {
121121 Console . WriteLine ( name ) ;
122122 foreach ( ObservedTagSet tagSet in counter . TagSets . Values . OrderBy ( t => t . Tags ) )
123123 {
124124 string tagName = MakeFixedWidth ( $ "{ new string ( ' ' , 2 * Indent ) } { tagSet . Tags } ", Indent + maxNameLength ) ;
125- Console . WriteLine ( $ "{ tagName } { FormatValue ( tagSet . LastValue ) } ") ;
125+ Console . WriteLine ( $ "{ tagName } { FormatValue ( tagSet . LastValue ) } ") ;
126126 tagSet . Row = row ++ ;
127127 }
128128 }
You can’t perform that action at this time.
0 commit comments