dev add monitoring basic
Test Workflow / test (push) Successful in 3s

This commit is contained in:
vladp
2026-03-03 17:51:51 +07:00
parent 38e7a382c7
commit c7ded41c16
@@ -47,6 +47,7 @@ public class PaymentController {
public void handleYooKassaNotification(@RequestBody Map<String, Object> notification) { public void handleYooKassaNotification(@RequestBody Map<String, Object> notification) {
try { try {
paymentService.handlePaymentNotification(notification); paymentService.handlePaymentNotification(notification);
log.info("Notification from yookassa: " + notification);
} catch (PaymentNotFoundException e) { } catch (PaymentNotFoundException e) {
log.error("Error processing payment notification", e); log.error("Error processing payment notification", e);
} }