From 653521f74a82d562b9e6ee8dde5798a9e5ee912b Mon Sep 17 00:00:00 2001 From: andrey-canon Date: Thu, 9 Jan 2025 11:01:16 -0500 Subject: [PATCH] feat: change logger level in order to avoid unnecessary sentry notifications --- eox_core/social_tpa_backends.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eox_core/social_tpa_backends.py b/eox_core/social_tpa_backends.py index 894a8891f..8b16b961d 100644 --- a/eox_core/social_tpa_backends.py +++ b/eox_core/social_tpa_backends.py @@ -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)