From 34635bf854b0d12452ffa4d2b1ffcfc09494654d Mon Sep 17 00:00:00 2001 From: Son NK <> Date: Sun, 19 Apr 2020 16:06:37 +0200 Subject: [PATCH] use Log.error to know when /api/apple/update_notification is called --- app/api/views/apple.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/api/views/apple.py b/app/api/views/apple.py index 872454ff..49463e31 100644 --- a/app/api/views/apple.py +++ b/app/api/views/apple.py @@ -48,6 +48,7 @@ def apple_update_notification(): The "Subscription Status URL" to receive update notifications from Apple TODO: to implement """ + LOG.error("request for /api/apple/update_notification") LOG.d("request data %s", request.data) LOG.d("request json %s", request.get_json(silent=True)) LOG.d("request %s", request)