From f9118a36f87e75d1a981405f088bd2dd85b0b3f9 Mon Sep 17 00:00:00 2001 From: Lars Date: Mon, 12 Jan 2026 08:33:11 +0100 Subject: [PATCH] Enhance logging in ingestion_processor.py to include normalized file path and note title Update the logging statement to provide additional context during the ingestion process by including the normalized file path and note title. This change aims to improve traceability and debugging capabilities in the ingestion workflow. --- app/core/ingestion/ingestion_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/ingestion/ingestion_processor.py b/app/core/ingestion/ingestion_processor.py index 5d3ed9d..1c4263d 100644 --- a/app/core/ingestion/ingestion_processor.py +++ b/app/core/ingestion/ingestion_processor.py @@ -263,7 +263,7 @@ class IngestionService: if not note_id: return {**result, "status": "error", "error": "missing_id"} - logger.info(f"📄 Bearbeite: '{note_id}'") + logger.info(f"📄 Bearbeite: '{note_id}' | Pfad: {normalized_file_path} | Title: {note_pl.get('title', 'N/A')}") # WP-24c v4.5.9: Strikte Change Detection (Hash-basierte Inhaltsprüfung) # Prüft Hash VOR der Verarbeitung, um redundante Ingestion zu vermeiden