From 2b71fee71265f3334a0fc9b95b597656e3219d47 Mon Sep 17 00:00:00 2001 From: Son NK <> Date: Wed, 13 May 2020 21:38:25 +0200 Subject: [PATCH] use warning log level for "No existing AppleSub" error --- app/api/views/apple.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/views/apple.py b/app/api/views/apple.py index ac3b3810..ac325e94 100644 --- a/app/api/views/apple.py +++ b/app/api/views/apple.py @@ -283,7 +283,7 @@ def apple_update_notification(): db.session.commit() return jsonify(ok=True), 200 else: - LOG.error( + LOG.warning( "No existing AppleSub for original_transaction_id %s", original_transaction_id, )