From 06e5292af1801684333a43dd395f59a03a53c410 Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Fri, 6 Jun 2025 18:10:06 -0400 Subject: [PATCH] Log add response --- app/src/Service/Venta/MediosPago/AbstractEndPoint.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/Service/Venta/MediosPago/AbstractEndPoint.php b/app/src/Service/Venta/MediosPago/AbstractEndPoint.php index 86b1575..b421d72 100644 --- a/app/src/Service/Venta/MediosPago/AbstractEndPoint.php +++ b/app/src/Service/Venta/MediosPago/AbstractEndPoint.php @@ -103,6 +103,7 @@ abstract class AbstractEndPoint extends LoggerEnabled implements EndPoint throw new EmptyResponse($request_uri); } $json = json_decode($contents, true); + $this->logger->info('Add Response', $json); return $this->save($json); }