diff --git a/Service.EDMIService/Methods/GlobalIndexer/Loader.vb b/Service.EDMIService/Methods/GlobalIndexer/Loader.vb index e49e8b58..b32b0c67 100644 --- a/Service.EDMIService/Methods/GlobalIndexer/Loader.vb +++ b/Service.EDMIService/Methods/GlobalIndexer/Loader.vb @@ -26,8 +26,7 @@ Namespace Methods.GlobalIndexer Logger.Debug("Start of Method [LoadProfile]") Try - Dim oProfile = GetDatatable.Run( - New GetDatatableFromCacheRequest With { + Dim oProfile = GetDatatable.Run(New GetDatatableFromCacheRequest With { .DataTable = VIEW_PROFILE, .FilterExpression = $"DOCTYPE_ID = {pProfileId}" }) @@ -47,6 +46,13 @@ Namespace Methods.GlobalIndexer .DynamicPath = oRow.ItemEx("DYNAMIC_FOLDER", "") } + Logger.Debug("Name: [{0}]", oProfileObject.Name) + Logger.Debug("Active: [{0}]", oProfileObject.IsActive) + Logger.Debug("ObjectStore: [{0}]", oProfileObject.ObjectStore) + Logger.Debug("ShortName: [{0}]", oProfileObject.ShortName) + Logger.Debug("NameConvention: [{0}]", oProfileObject.NameConvention) + Logger.Debug("DynamicPath: [{0}]", oProfileObject.DynamicPath) + Return oProfileObject Catch ex As Exception LogAndThrow(ex, "Error while automatic loading profile!")