Skip to content
Snippets Groups Projects
Commit c6a7ad05 authored by Colin Murtaugh's avatar Colin Murtaugh
Browse files

added debug logging

parent 45a6996d
No related branches found
No related tags found
No related merge requests found
......@@ -51,8 +51,10 @@ class LTIAuthBackend(ModelBackend):
logger.debug('POST %s: %s' % (key, postparams.get(key)))
logger.debug('request abs url is %s' % request.build_absolute_uri())
for key in request.META:
logger.debug('META %s: %s') % (key, request.META.get(key))
metaparams = request.META.dict()
for key in metaparams:
logger.debug('META %s: %s') % (key, metaparams.get(key))
logger.info("about to check the signature")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment