This is an automated email from the ASF dual-hosted git repository.

victorromero pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 9cc76fe70 HU4 Return data
9cc76fe70 is described below

commit 9cc76fe70a935b7f91eff77cdd0ae68d95cd7c58
Author: Victor Romero <[email protected]>
AuthorDate: Sat May 4 00:20:36 2024 -0600

    HU4 Return data
---
 .../infrastructure/dataqueries/api/DatatablesApiResource.java     | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git 
a/fineract-provider/src/main/java/org/apache/fineract/infrastructure/dataqueries/api/DatatablesApiResource.java
 
b/fineract-provider/src/main/java/org/apache/fineract/infrastructure/dataqueries/api/DatatablesApiResource.java
index d0ba53fc6..4e6755a19 100644
--- 
a/fineract-provider/src/main/java/org/apache/fineract/infrastructure/dataqueries/api/DatatablesApiResource.java
+++ 
b/fineract-provider/src/main/java/org/apache/fineract/infrastructure/dataqueries/api/DatatablesApiResource.java
@@ -59,6 +59,8 @@ import 
org.apache.fineract.infrastructure.dataqueries.service.GenericDataService
 import 
org.apache.fineract.infrastructure.dataqueries.service.ReadWriteNonCoreDataService;
 import 
org.apache.fineract.infrastructure.security.service.PlatformSecurityContext;
 import org.apache.fineract.portfolio.search.data.AdvancedQueryData;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 import org.springframework.data.domain.Page;
 import org.springframework.stereotype.Component;
 
@@ -76,6 +78,8 @@ public class DatatablesApiResource {
     private final ToApiJsonSerializer<GenericResultsetData> 
toApiJsonSerializer;
     private final PortfolioCommandSourceWritePlatformService 
commandsSourceWritePlatformService;
 
+    private static final Logger LOGGER = 
LoggerFactory.getLogger(DatatablesApiResource.class);
+
     @GET
     @Consumes({ MediaType.APPLICATION_JSON })
     @Produces({ MediaType.APPLICATION_JSON })
@@ -268,7 +272,7 @@ public class DatatablesApiResource {
         } else {
             json = 
this.genericDataService.generateJsonFromGenericResultsetData(results);
         }
-
+        LOGGER.info("REGRESO DATOS DE DATA TABLE CON ID");
         return json;
     }
 
@@ -293,7 +297,7 @@ public class DatatablesApiResource {
         } else {
             json = 
this.genericDataService.generateJsonFromGenericResultsetData(results);
         }
-
+        LOGGER.info("REGRESO DATOS DE DATA TABLE CON NOMBRE E ID");
         return json;
     }
 

Reply via email to