From 9ba9e064dd60f6eab012f7fa80043c0fab366d5f Mon Sep 17 00:00:00 2001 From: Rodrigo Gonzalez Date: Sat, 5 Sep 2020 15:02:32 -0300 Subject: [PATCH] Debug info removed --- src/WebhooksController.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/WebhooksController.php b/src/WebhooksController.php index 0b3aa20..759b33c 100644 --- a/src/WebhooksController.php +++ b/src/WebhooksController.php @@ -18,11 +18,6 @@ class WebhooksController $notificationId = AppleNotification::storeNotification($jobConfigKey, $request->input()); - // FIXME: rjgonzale, why is the latest receipt null? this is for debugging - if (!$request->has('latest_receipt_info')) { - Log::error("Notification with id " . $notificationId . " does not have latest_receipt_info"); - } - $payload = NotificationPayload::createFromRequest($request); $jobClass = config("appstore-server-notifications.jobs.{$jobConfigKey}", null);