Skip to content

Commit

Permalink
feat: change logger level in order to avoid unnecessary sentry notifi…
Browse files Browse the repository at this point in the history
…cations
  • Loading branch information
andrey-canon committed Jan 9, 2025
1 parent 708a1ce commit 653521f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eox_core/social_tpa_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self, *args, **kwargs):
try:
setattr(self, key, conf.get(key, getattr(self, key)))
except Exception: # pylint: disable=broad-except
LOG.error("Tried and failed to set property %s of a config-based-openidconnect", key)
LOG.warning("Tried and failed to set property %s of a config-based-openidconnect", key)

super().__init__(*args, **kwargs)

Expand Down

0 comments on commit 653521f

Please sign in to comment.