jack vor 1 Monat
Ursprung
Commit
335c129735
1 geänderte Dateien mit 2 neuen und 0 gelöschten Zeilen
  1. 2 0
      py/core/providers/database/chunks.py

+ 2 - 0
py/core/providers/database/chunks.py

@@ -674,6 +674,8 @@ class PostgresChunksHandler(Handler):
         WHERE document_id = $2 AND NOT ($1 = ANY(collection_ids));
         """
         logger.info(query)
+        logger.info(f"collection_id: {collection_id}")
+        logger.info(f"document_id: {document_id}")
         return await self.connection_manager.execute_query(
             query, (str(collection_id), str(document_id))
         )