diff --git a/idhub/user/forms.py b/idhub/user/forms.py index 1102e9a..81c36a7 100644 --- a/idhub/user/forms.py +++ b/idhub/user/forms.py @@ -1,3 +1,5 @@ +import logging + from django import forms from django.conf import settings from django.utils.translation import gettext_lazy as _ @@ -6,6 +8,9 @@ from oidc4vp.models import Organization from idhub_auth.models import User +logger = logging.getLogger(__name__) + + class ProfileForm(forms.ModelForm): MANDATORY_FIELDS = ['first_name', 'last_name', 'email'] @@ -109,7 +114,8 @@ class RequestCredentialForm(forms.Form): cred = cred[0] try: cred.issue(did, domain=self._domain) - except Exception: + except Exception as err: + logger.error(err) return if commit: