reduce logging level

This commit is contained in:
Son NK 2020-03-09 09:48:33 +01:00
parent 1c5c5896f8
commit 3ef7285288
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ def billing():
if request.method == "POST":
if request.form.get("form-name") == "cancel":
LOG.error(f"User {current_user} cancels their subscription")
LOG.warning(f"User {current_user} cancels their subscription")
success = cancel_subscription(sub.subscription_id)
if success: