Skip to content

Commit

Permalink
chore(fluyt): add verbose log on checking if index exists
Browse files Browse the repository at this point in the history
  • Loading branch information
timonv committed Jun 3, 2024
1 parent 389b0f1 commit ce6e465
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/indexing/src/storage/qdrant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(());
Expand Down

0 comments on commit ce6e465

Please sign in to comment.