From d98746b9883a7f448cf3e454f5e50f9fdccf3364 Mon Sep 17 00:00:00 2001 From: pablodanswer Date: Wed, 8 Jan 2025 17:03:15 -0800 Subject: [PATCH] remove unnecessary logs --- backend/onyx/document_index/vespa/index.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/backend/onyx/document_index/vespa/index.py b/backend/onyx/document_index/vespa/index.py index ce2c580524f..f5c4fc113f4 100644 --- a/backend/onyx/document_index/vespa/index.py +++ b/backend/onyx/document_index/vespa/index.py @@ -608,19 +608,15 @@ def update_single( large_chunks_enabled=large_chunks_enabled, ) - logger.info("UPDATING len(doc_chunk_ids)") - doc_chunk_count += len(doc_chunk_ids) for doc_chunk_id in doc_chunk_ids: - logger.info("UPDATING CHUNK") self.update_single_chunk( doc_chunk_id=doc_chunk_id, index_name=index_name, fields=fields, doc_id=doc_id, ) - logger.info(f"UPDATED A TOTAL OF {doc_chunk_count} CHUNKS for {doc_id}") return doc_chunk_count