From b7694c34f53da8f3253236aff1a5b4a24503bf3c Mon Sep 17 00:00:00 2001 From: ad hoc Date: Mon, 4 Apr 2022 21:00:07 +0200 Subject: [PATCH] remove println --- milli/src/update/index_documents/extract/extract_word_docids.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/milli/src/update/index_documents/extract/extract_word_docids.rs b/milli/src/update/index_documents/extract/extract_word_docids.rs index b577ef567..5083bbd90 100644 --- a/milli/src/update/index_documents/extract/extract_word_docids.rs +++ b/milli/src/update/index_documents/extract/extract_word_docids.rs @@ -69,11 +69,9 @@ pub fn extract_word_docids( } let fid = field_id_from_position(position); if exact_attributes.contains(&fid) && !added_to_exact { - println!("is exact: {}", std::str::from_utf8(&word_bytes).unwrap()); exact_word_docids_sorter.insert(word_bytes, &value_buffer)?; added_to_exact = true; } else if !added_to_word_docids { - println!("isnt exact: {}", std::str::from_utf8(&word_bytes).unwrap()); word_docids_sorter.insert(word_bytes, &value_buffer)?; added_to_word_docids = true; }