remove spurrious messages
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Tue, 31 Mar 2015 14:30:48 +0000 (16:30 +0200)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Tue, 31 Mar 2015 14:30:48 +0000 (16:30 +0200)
unfold/sessioncache.py

index aff43c4..7abb22b 100644 (file)
@@ -43,7 +43,6 @@ class SessionCache(dict):
         Get the auth previously attached to the request's session, or None
         """
         result = self._get(request, 'auth')
-        logger.info('OUT {}'.format(result))
         return result
 
     def store_auth(self, request, auth):
@@ -51,7 +50,6 @@ class SessionCache(dict):
         Store the auth object attached to this request's session
         create that extension if needed
         """
-        logger.info('IN {}'.format(auth))
         return self._store(request, 'auth', auth)
 
     def get_metadata(self, request):