Skip to content

Commit de08ab2

Browse files
Samarth PyatiSamarth Pyati
authored andcommitted
Prepare for merge to main
1 parent 363996c commit de08ab2

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/lexer.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ impl<'a> Lexer<'a> {
5858
let result = self.chop_while(|x| x.is_alphanumeric());
5959
let token = result.iter().collect::<String>();
6060
let stemmed_token = stemmer.stem(&token).into_owned().to_uppercase();
61-
println!("Before: {}, After: {}", token, stemmed_token);
6261
return Some(stemmed_token);
6362
}
6463

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ fn append_folder_to_model(dir_path: &Path, model: &mut dyn Model) -> Result<(),
120120
continue 'step;
121121
}
122122

123-
println!("Indexing {} ...", file_path_str.bright_cyan());
123+
println!("{}: Indexing {} ...", "INFO".cyan(), file_path_str.bright_cyan());
124124

125125
let content = match parse_file_by_ext(&file_path) {
126126
Ok(content) => content.chars().collect::<Vec<_>>(),

0 commit comments

Comments
 (0)