diff --git a/Service.EDMIService/Methods/Database/GetDatatableFromCache/GetDatatableFromCacheMethod.vb b/Service.EDMIService/Methods/Database/GetDatatableFromCache/GetDatatableFromCacheMethod.vb index a5e3fb06..cd707632 100644 --- a/Service.EDMIService/Methods/Database/GetDatatableFromCache/GetDatatableFromCacheMethod.vb +++ b/Service.EDMIService/Methods/Database/GetDatatableFromCache/GetDatatableFromCacheMethod.vb @@ -25,6 +25,9 @@ Namespace Methods.Database.GetDatatableFromCache Dim oFilterExpression As String = Utils.NotNull(pData.FilterExpression, String.Empty) Dim oSortByColumn As String = Utils.NotNull(pData.SortByColumn, String.Empty) + Logger.Debug("Applying filter expression: [{0}]", oFilterExpression) + Logger.Debug("Applying sort expression: [{0}]", oSortByColumn) + Dim oFilteredRows = oDataTable.Select(oFilterExpression, oSortByColumn) Dim oFilteredTable As DataTable = Nothing