Remove redundant debug logging for Qdrant operations
This commit is contained in:
parent
41f8ef05b9
commit
74783d7781
1 changed files with 4 additions and 4 deletions
|
|
@ -204,7 +204,7 @@ class QdrantVectorDBStorage(BaseVectorStorage):
|
||||||
score_threshold=self.cosine_better_than_threshold,
|
score_threshold=self.cosine_better_than_threshold,
|
||||||
)
|
)
|
||||||
|
|
||||||
logger.debug(f"[{self.workspace}] query result: {results}")
|
# logger.debug(f"[{self.workspace}] query result: {results}")
|
||||||
|
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
|
|
@ -253,9 +253,9 @@ class QdrantVectorDBStorage(BaseVectorStorage):
|
||||||
try:
|
try:
|
||||||
# Generate the entity ID
|
# Generate the entity ID
|
||||||
entity_id = compute_mdhash_id_for_qdrant(entity_name, prefix="ent-")
|
entity_id = compute_mdhash_id_for_qdrant(entity_name, prefix="ent-")
|
||||||
logger.debug(
|
# logger.debug(
|
||||||
f"[{self.workspace}] Attempting to delete entity {entity_name} with ID {entity_id}"
|
# f"[{self.workspace}] Attempting to delete entity {entity_name} with ID {entity_id}"
|
||||||
)
|
# )
|
||||||
|
|
||||||
# Delete the entity point from the collection
|
# Delete the entity point from the collection
|
||||||
self._client.delete(
|
self._client.delete(
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue