Skip to content

Commit

Permalink
Make log statements include the qdrant ID as well as card_id.
Browse files Browse the repository at this point in the history
Part of #646. Part of #670.
  • Loading branch information
jkomoros committed Nov 12, 2023
1 parent ccc93fe commit 0e53403
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions/src/embeddings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ class EmbeddingStore {
}
});

console.log(`Updated the metadata for ${card.id} because its embedding had not changed`);
console.log(`Updated the metadata for ${card.id} (${existingPoint.id}) because its embedding had not changed`);
return;
}

Expand Down Expand Up @@ -372,7 +372,7 @@ class EmbeddingStore {
]
});

console.log(`Stored embedding for ${card.id}`);
console.log(`Stored embedding for ${card.id} (${id})`);
}

async deleteCard(card : Card) : Promise<void> {
Expand Down

0 comments on commit 0e53403

Please sign in to comment.