diff --git a/app/dashboard/views/support.py b/app/dashboard/views/support.py index 387217ef..8bdf40e1 100644 --- a/app/dashboard/views/support.py +++ b/app/dashboard/views/support.py @@ -28,9 +28,9 @@ def show_support_dialog(): def check_zendesk_response_status(response_code: int) -> bool: if response_code != 201: if response_code in (401 or 422): - LOG.debug("Could not authenticate") + LOG.error("Could not authenticate") else: - LOG.debug("Problem with the request. Status {}".format(response_code)) + LOG.error("Problem with the request. Status {}".format(response_code)) return False return True diff --git a/templates/dashboard/support.html b/templates/dashboard/support.html index 7a668c4b..e1f87d86 100644 --- a/templates/dashboard/support.html +++ b/templates/dashboard/support.html @@ -19,7 +19,7 @@ {% block script %}