From b3848af7019f66daf23d8857f38d8227e5bf3ff7 Mon Sep 17 00:00:00 2001 From: OlgunR Date: Thu, 23 Apr 2026 10:23:32 +0200 Subject: [PATCH] Improve and localize fulltext extraction log messages Updated log messages for fulltext extraction to be clearer and localized in German. Success and failure cases now provide accurate and user-friendly information, replacing previous misleading or English-only messages. --- ToolCollection/frmNIHauptseite.vb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ToolCollection/frmNIHauptseite.vb b/ToolCollection/frmNIHauptseite.vb index d39567c..5cfa47b 100644 --- a/ToolCollection/frmNIHauptseite.vb +++ b/ToolCollection/frmNIHauptseite.vb @@ -924,9 +924,9 @@ Public Class frmNIHauptseite _Logger.Debug(">> _fulltext initialized.") fulltext = pMyWMDoc.GetVariableValue(aktivesProfil.Desk_windreamIndex) If Len(fulltext) > 0 Then - _Logger.Info($"{aktivesProfil.Desk_windreamIndex} is empty...") + _Logger.Info($"Volltext aus [{aktivesProfil.Desk_windreamIndex}] erfolgreich extrahiert.") Else - _Logger.Info($"## No fulltext from [{aktivesProfil.Desk_windreamIndex}] extracted!") + _Logger.Info($"## Kein Volltext aus [{aktivesProfil.Desk_windreamIndex}] extrahiert - versuche 'Manueller Volltext'...") fulltext = pMyWMDoc.GetVariableValue("Manueller Volltext") End If If Len(fulltext) > 0 Then