From 04d793abbd650a884b73952d12d25ffd4ea9edc1 Mon Sep 17 00:00:00 2001 From: yangdx Date: Thu, 3 Jul 2025 22:15:32 +0800 Subject: [PATCH] Update logger message --- lightrag/api/routers/document_routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightrag/api/routers/document_routes.py b/lightrag/api/routers/document_routes.py index 1e21aa4f..c25f7241 100644 --- a/lightrag/api/routers/document_routes.py +++ b/lightrag/api/routers/document_routes.py @@ -828,7 +828,7 @@ async def run_scanning_process(rag: LightRAG, doc_manager: DocumentManager): try: new_files = doc_manager.scan_directory_for_new_files() total_files = len(new_files) - logger.info(f"Found {total_files} new files to index.") + logger.info(f"Found {total_files} files to index.") if not new_files: return