mirror of
https://github.com/simple-login/app.git
synced 2025-02-24 15:53:22 +08:00
use warning level for apple server issue
This commit is contained in:
parent
d0776b770f
commit
d59e9a6238
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ def verify_receipt(receipt_data, user, password) -> Optional[AppleSubscription]:
|
|||
_PROD_URL, json={"receipt-data": receipt_data, "password": password}
|
||||
)
|
||||
if r.status_code >= 500:
|
||||
LOG.error("Apple server error, response:%s %s", r, r.content)
|
||||
LOG.warning("Apple server error, response:%s %s", r, r.content)
|
||||
return None
|
||||
|
||||
if r.json() == {"status": 21007}:
|
||||
|
|
Loading…
Reference in a new issue