mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-11-04 01:46:28 +00:00 
			
		
		
		
	Add logging when inference took place.
Displays log message in the form: ``` [2022-12-21T09:19:42Z INFO milli::update::index_documents::enrich] Primary key was not specified in index. Inferred to 'id' ```
This commit is contained in:
		@@ -79,7 +79,10 @@ pub fn enrich_documents_batch<R: Read + Seek>(
 | 
			
		||||
                    documents_batch_index.insert(DEFAULT_PRIMARY_KEY),
 | 
			
		||||
                ),
 | 
			
		||||
                [] => return Ok(Err(UserError::NoPrimaryKeyCandidateFound)),
 | 
			
		||||
                [(field_id, name)] => PrimaryKey::flat(name, *field_id),
 | 
			
		||||
                [(field_id, name)] => {
 | 
			
		||||
                    log::info!("Primary key was not specified in index. Inferred to '{name}'");
 | 
			
		||||
                    PrimaryKey::flat(name, *field_id)
 | 
			
		||||
                }
 | 
			
		||||
                multiple => {
 | 
			
		||||
                    return Ok(Err(UserError::MultiplePrimaryKeyCandidatesFound {
 | 
			
		||||
                        candidates: multiple
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user