From 7fc35c558616abd5178529d2cc73d19ac1e7ccb9 Mon Sep 17 00:00:00 2001 From: Tamo Date: Thu, 7 Jul 2022 15:02:06 +0200 Subject: [PATCH] remove the useless prints --- milli/src/update/index_documents/transform.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/milli/src/update/index_documents/transform.rs b/milli/src/update/index_documents/transform.rs index 705bbb21c..b61395a96 100644 --- a/milli/src/update/index_documents/transform.rs +++ b/milli/src/update/index_documents/transform.rs @@ -411,11 +411,6 @@ impl<'a, 'i> Transform<'a, 'i> { rtxn: &RoTxn, field_distribution: &mut FieldDistribution, ) -> Result<()> { - println!( - "The following documents are going to be deleted from the field distribution: {:?}", - self.replaced_documents_ids - ); - for deleted_docid in self.replaced_documents_ids.iter() { let obkv = self.index.documents.get(rtxn, &BEU32::new(deleted_docid))?.ok_or( InternalError::DatabaseMissingEntry { db_name: db_name::DOCUMENTS, key: None }, @@ -483,7 +478,6 @@ impl<'a, 'i> Transform<'a, 'i> { let mut documents_count = 0; while let Some((key, val)) = iter.next()? { - println!("Reading a document"); // send a callback to show at which step we are documents_count += 1; progress_callback(UpdateIndexingStep::ComputeIdsAndMergeDocuments {