@@ -280,7 +280,6 @@ impl MacroType {
280280 || ( start_index + new_text. len ( ) as u32 ) != line_end_index
281281 {
282282 let new_text = indent + new_text. as_str ( ) ;
283- tracing:: info!( "Formatting line({line}): '{new_text}'" ) ;
284283 lines. push ( create_text_edit ( new_text, line, 0 , line_end_index) ) ;
285284 }
286285
@@ -703,7 +702,6 @@ impl TextFormatter for IfDefBranch {
703702 || ( start_index + new_text. len ( ) as u32 ) != * line_end_index
704703 {
705704 let new_text = new_indent. clone ( ) + new_text. as_str ( ) ;
706- tracing:: info!( "Formatting line({line}): '{new_text}'" ) ;
707705 lines. push ( create_text_edit ( new_text, * line, 0 , * line_end_index) ) ;
708706 }
709707
@@ -730,7 +728,6 @@ impl TextFormatter for IfDefBranch {
730728 || ( start_index + new_text. len ( ) as u32 ) != * line_end_index
731729 {
732730 let new_text = new_indent. clone ( ) + new_text. as_str ( ) ;
733- tracing:: info!( "Formatting line({line}): '{new_text}'" ) ;
734731 lines. push ( create_text_edit ( new_text, * line, 0 , * line_end_index) ) ;
735732 }
736733
@@ -745,7 +742,6 @@ impl TextFormatter for IfDefBranch {
745742 || ( start_index + new_text. len ( ) as u32 ) != * endif_line_end_index
746743 {
747744 let new_text = new_indent + new_text. as_str ( ) ;
748- tracing:: info!( "Formatting line({line}): '{new_text}'" ) ;
749745 lines. push ( create_text_edit (
750746 new_text,
751747 * endif_line,
@@ -765,7 +761,6 @@ impl TextFormatter for IfDefBranch {
765761 || ( start_index + new_text. len ( ) as u32 ) != * line_end_index
766762 {
767763 let new_text = new_indent + new_text. as_str ( ) ;
768- tracing:: info!( "Formatting line({line}): '{new_text}'" ) ;
769764 lines. push ( create_text_edit ( new_text, * line, 0 , * line_end_index) ) ;
770765 }
771766 }
@@ -886,7 +881,6 @@ impl TextFormatter for IfNotDefBranch {
886881 || ( start_index + new_text. len ( ) as u32 ) != * line_end_index
887882 {
888883 let new_text = new_indent. clone ( ) + new_text. as_str ( ) ;
889- tracing:: info!( "Formatting line({line}): '{new_text}'" ) ;
890884 lines. push ( create_text_edit ( new_text, * line, 0 , * line_end_index) ) ;
891885 }
892886
@@ -901,7 +895,6 @@ impl TextFormatter for IfNotDefBranch {
901895 || ( start_index + new_text. len ( ) as u32 ) != * endif_line_end_index
902896 {
903897 let new_text = new_indent + new_text. as_str ( ) ;
904- tracing:: info!( "Formatting line({line}): '{new_text}'" ) ;
905898 lines. push ( create_text_edit (
906899 new_text,
907900 * endif_line,
@@ -921,7 +914,6 @@ impl TextFormatter for IfNotDefBranch {
921914 || ( start_index + new_text. len ( ) as u32 ) != * line_end_index
922915 {
923916 let new_text = new_indent + new_text. as_str ( ) ;
924- tracing:: info!( "Formatting line({line}): '{new_text}'" ) ;
925917 lines. push ( create_text_edit ( new_text, * line, 0 , * line_end_index) ) ;
926918 }
927919 }
0 commit comments