@@ -11,7 +11,7 @@ use error_stack::{Context, Result};
1111use ignore:: Walk ;
1212use rayon:: prelude:: { IntoParallelIterator , ParallelIterator } ;
1313use regex:: Regex ;
14- use tracing:: { debug , instrument} ;
14+ use tracing:: { info , instrument} ;
1515
1616use crate :: { config:: Config , error_stack_ext:: IntoContext } ;
1717use glob_match:: glob_match;
@@ -137,7 +137,7 @@ impl Context for Error {}
137137impl Project {
138138 #[ instrument( level = "debug" , skip_all) ]
139139 pub fn build ( base_path : & Path , codeowners_file_path : & Path , config : & Config ) -> Result < Self , Error > {
140- debug ! ( base_path = base_path. to_str( ) , "scanning project" ) ;
140+ info ! ( base_path = base_path. to_str( ) , "scanning project" ) ;
141141
142142 let mut owned_file_paths: Vec < PathBuf > = Vec :: new ( ) ;
143143 let mut packages: Vec < Package > = Vec :: new ( ) ;
@@ -205,7 +205,7 @@ impl Project {
205205 }
206206 }
207207
208- debug ! (
208+ info ! (
209209 owned_file_paths = owned_file_paths. len( ) ,
210210 packages = packages. len( ) ,
211211 teams = teams. len( ) ,
@@ -262,7 +262,7 @@ impl Project {
262262fn owned_files ( owned_file_paths : Vec < PathBuf > ) -> Vec < ProjectFile > {
263263 let regexp = Regex :: new ( r#"^(?:#|//) @team (.*)$"# ) . expect ( "error compiling regular expression" ) ;
264264
265- debug ! ( "opening files to read ownership annotation" ) ;
265+ info ! ( "opening files to read ownership annotation" ) ;
266266
267267 owned_file_paths
268268 . into_par_iter ( )
0 commit comments