Skip to content

Commit

Permalink
Don't prefix log messages with django_auth_adfs
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane committed Sep 2, 2022
1 parent 2f5e5bb commit 8b8b3f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions django_auth_adfs/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ class AdfsAuthCodeBackend(AdfsBaseBackend):
def authenticate(self, request=None, authorization_code=None, **kwargs):
# If there's no token or code, we pass control to the next authentication backend
if authorization_code is None or authorization_code == '':
logger.debug("django_auth_adfs authentication backend was called but no authorization code was received")
logger.debug("Authentication backend was called but no authorization code was received")
return

# If loaded data is too old, reload it again
Expand All @@ -414,7 +414,7 @@ def authenticate(self, request=None, access_token=None, **kwargs):

# If there's no token or code, we pass control to the next authentication backend
if access_token is None or access_token == '':
logger.debug("django_auth_adfs authentication backend was called but no access token was received")
logger.debug("Authentication backend was called but no access token was received")
return

access_token = access_token.decode()
Expand Down
4 changes: 2 additions & 2 deletions django_auth_adfs/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def load_config(self):
# If loaded data is too old, reload it again
refresh_time = datetime.now() - timedelta(hours=settings.CONFIG_RELOAD_INTERVAL)
if self._config_timestamp is None or self._config_timestamp < refresh_time:
logger.debug("Loading django_auth_adfs ID Provider configuration.")
logger.debug("Loading ID Provider configuration.")
try:
loaded = self._load_openid_config()
self._mode = "openid_connect"
Expand All @@ -224,7 +224,7 @@ def load_config(self):
logger.warning("Could not load any data from ADFS server. Keeping previous configurations")
self._config_timestamp = datetime.now()

logger.info("django_auth_adfs loaded settings from ADFS server.")
logger.info("Loaded settings from ADFS server.")
logger.info("operating mode: %s", self._mode)
logger.info("authorization endpoint: %s", self.authorization_endpoint)
logger.info("token endpoint: %s", self.token_endpoint)
Expand Down

0 comments on commit 8b8b3f0

Please sign in to comment.