Skip to content

Commit

Permalink
TreeSitter extractors: log fewer lines
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
aibaars authored Feb 7, 2025
1 parent 4581e77 commit a8fbb37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/tree-sitter-extractor/src/extractor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit a8fbb37

Please sign in to comment.