From ce6e465d4fb12e2bbc7547738b5fbe5133ec2d5a Mon Sep 17 00:00:00 2001 From: Timon Vonk Date: Mon, 3 Jun 2024 23:42:50 +0200 Subject: [PATCH] chore(fluyt): add verbose log on checking if index exists --- crates/indexing/src/storage/qdrant.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/indexing/src/storage/qdrant.rs b/crates/indexing/src/storage/qdrant.rs index f9dffbde..f7f118eb 100644 --- a/crates/indexing/src/storage/qdrant.rs +++ b/crates/indexing/src/storage/qdrant.rs @@ -40,6 +40,7 @@ impl Qdrant { } pub async fn create_index_if_not_exists(&self) -> Result<()> { + tracing::info!("Checking if collection {} exists", self.collection_name); if self.client.collection_exists(&self.collection_name).await? { tracing::warn!("Collection {} exists", self.collection_name); return Ok(());