Chore: add debug log line to reindex

This commit is contained in:
shamoon
2025-09-09 05:36:37 -07:00
parent f431578f43
commit 894939e492

View File

@@ -195,6 +195,7 @@ def update_document(writer: AsyncWriter, doc: Document) -> None:
original_filename=doc.original_filename,
is_shared=len(viewer_ids) > 0,
)
logger.debug(f"Index updated for document {doc.pk}.")
def remove_document(writer: AsyncWriter, doc: Document) -> None: