From b34a0780e7ae2efad4c72a9a97ce08b6f87a988e Mon Sep 17 00:00:00 2001 From: Developer01 Date: Mon, 28 Apr 2025 13:12:19 +0200 Subject: [PATCH] Logging im Falle Vektor und Vorbelegung --- Global_Indexer/frmIndex.vb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Global_Indexer/frmIndex.vb b/Global_Indexer/frmIndex.vb index f43d18d..29b7fc0 100644 --- a/Global_Indexer/frmIndex.vb +++ b/Global_Indexer/frmIndex.vb @@ -873,10 +873,11 @@ Public Class frmIndex ' indexierung_erfolgreich = WINDREAM.SetFileIndex(CURRENT_NEWFILENAME, oIndexName, oIndexValue, CURR_DOKART_OBJECTTYPE) 'Else If oOverwrite = False And oExistingItems.Count > 0 Then - _Logger.Debug("oOverwrite = False and oExistingItems.Count > 0") + _Logger.Debug("oOverwrite = False and WMObject already contains [{0}] values in attribute,Values will be concatted", oExistingItems.Count) oListofString = oExistingItems.Concat(oListofString).ToList() End If If oPreventMultipleValues = True Then + _Logger.Debug("Preventing multiple values in Vektor") oListofString = oListofString.Distinct().ToList() End If indexierung_erfolgreich = WINDREAM.SetFileIndexLoS(CURRENT_NEWFILENAME, oIndexName, oListofString, CURR_DOKART_OBJECTTYPE)