@@ -411,7 +411,7 @@ impl<'a> Tokenizer<'a> {
411
411
let info = ( point. index , point. vs ) ;
412
412
413
413
#[ cfg( feature = "log" ) ]
414
- log:: debug !( "position: define skip: {:?} -> ({:?})" , point. line, info) ;
414
+ log:: trace !( "position: define skip: {:?} -> ({:?})" , point. line, info) ;
415
415
416
416
let at = point. line - self . first_line ;
417
417
@@ -485,7 +485,7 @@ impl<'a> Tokenizer<'a> {
485
485
self . account_for_potential_skip ( ) ;
486
486
487
487
#[ cfg( feature = "log" ) ]
488
- log:: debug !( "position: after eol: `{:?}`" , self . point) ;
488
+ log:: trace !( "position: after eol: `{:?}`" , self . point) ;
489
489
} else {
490
490
self . point . column += 1 ;
491
491
}
@@ -722,7 +722,7 @@ fn push_impl(
722
722
} ;
723
723
724
724
#[ cfg( feature = "log" ) ]
725
- log:: debug !( "attempt: `{:?}` -> `{:?}`" , state, next) ;
725
+ log:: trace !( "attempt: `{:?}` -> `{:?}`" , state, next) ;
726
726
727
727
state = next;
728
728
} else {
@@ -751,15 +751,15 @@ fn push_impl(
751
751
} ;
752
752
753
753
#[ cfg( feature = "log" ) ]
754
- log:: debug !( "feed: {} to {:?}" , format_byte_opt( byte) , name) ;
754
+ log:: trace !( "feed: {} to {:?}" , format_byte_opt( byte) , name) ;
755
755
756
756
tokenizer. expect ( byte) ;
757
757
state = call ( tokenizer, name) ;
758
758
} ;
759
759
}
760
760
State :: Retry ( name) => {
761
761
#[ cfg( feature = "log" ) ]
762
- log:: debug !( "retry: `{:?}`" , name) ;
762
+ log:: trace !( "retry: `{:?}`" , name) ;
763
763
764
764
state = call ( tokenizer, name) ;
765
765
}
0 commit comments