summaryrefslogtreecommitdiffstats
path: root/django_authopenid/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'django_authopenid/util.py')
-rw-r--r--django_authopenid/util.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/django_authopenid/util.py b/django_authopenid/util.py
index 165756e0..969af0b9 100644
--- a/django_authopenid/util.py
+++ b/django_authopenid/util.py
@@ -14,7 +14,7 @@ try:
except:
from yadis import xri
-import time, base64, hashlib, operator
+import time, base64, hashlib, operator, logging
from utils.forms import clean_next, get_next_url
from models import Association, Nonce
@@ -23,6 +23,7 @@ __all__ = ['OpenID', 'DjangoOpenIDStore', 'from_openid_response', 'clean_next']
class OpenID:
def __init__(self, openid_, issued, attrs=None, sreg_=None):
+ logging.debug('init janrain openid object')
self.openid = openid_
self.issued = issued
self.attrs = attrs or {}