TreeSitter extractors: log fewer lines

Printing a line for every extracted file is too verbose and for large projects makes it impossible to view the log in the Actions UI.
This commit is contained in:
Arthur Baars
2025-02-07 12:28:17 +01:00
committed by GitHub
parent 4581e772d6
commit a8fbb37569

View File

@@ -192,7 +192,7 @@ pub fn extract(
let _enter = span.enter();
tracing::info!("extracting: {}", path_str);
tracing::debug!("extracting: {}", path_str);
let mut parser = Parser::new();
parser.set_language(language).unwrap();