Browse Source

[Update] 去掉logger.info openid msg

pull/2632/head
ibuler 6 years ago
parent
commit
8196537878
  1. 1
      apps/authentication/backends/openid/middleware.py

1
apps/authentication/backends/openid/middleware.py

@ -23,7 +23,6 @@ class OpenIDAuthenticationMiddleware(MiddlewareMixin):
def process_request(self, request): def process_request(self, request):
# Don't need openid auth if AUTH_OPENID is False # Don't need openid auth if AUTH_OPENID is False
if not settings.AUTH_OPENID: if not settings.AUTH_OPENID:
logger.info("Not settings.AUTH_OPENID")
return return
# Don't need check single logout if user not authenticated # Don't need check single logout if user not authenticated
if not request.user.is_authenticated: if not request.user.is_authenticated:

Loading…
Cancel
Save