File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1578,11 +1578,11 @@ impl<'a> Builder<'a> {
15781578 panic ! ( "{}" , out) ;
15791579 }
15801580 if let Some ( out) = self . cache . get ( & step) {
1581- self . verbose ( & format ! ( "{}c {:?}" , " " . repeat( stack. len( ) ) , step) ) ;
1581+ self . verbose_than ( 1 , & format ! ( "{}c {:?}" , " " . repeat( stack. len( ) ) , step) ) ;
15821582
15831583 return out;
15841584 }
1585- self . verbose ( & format ! ( "{}> {:?}" , " " . repeat( stack. len( ) ) , step) ) ;
1585+ self . verbose_than ( 1 , & format ! ( "{}> {:?}" , " " . repeat( stack. len( ) ) , step) ) ;
15861586 stack. push ( Box :: new ( step. clone ( ) ) ) ;
15871587 }
15881588
@@ -1605,7 +1605,7 @@ impl<'a> Builder<'a> {
16051605 let cur_step = stack. pop ( ) . expect ( "step stack empty" ) ;
16061606 assert_eq ! ( cur_step. downcast_ref( ) , Some ( & step) ) ;
16071607 }
1608- self . verbose ( & format ! ( "{}< {:?}" , " " . repeat( self . stack. borrow( ) . len( ) ) , step) ) ;
1608+ self . verbose_than ( 1 , & format ! ( "{}< {:?}" , " " . repeat( self . stack. borrow( ) . len( ) ) , step) ) ;
16091609 self . cache . put ( step, out. clone ( ) ) ;
16101610 out
16111611 }
You can’t perform that action at this time.
0 commit comments