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)