diff --git a/src/regtech_api_commons/oauth2/oauth2_admin.py b/src/regtech_api_commons/oauth2/oauth2_admin.py index 53a8c3e..ddd1403 100644 --- a/src/regtech_api_commons/oauth2/oauth2_admin.py +++ b/src/regtech_api_commons/oauth2/oauth2_admin.py @@ -30,7 +30,7 @@ def __init__(self, kc_settings: KeycloakSettings) -> None: def get_claims(self, token: str) -> Dict[str, str] | None: try: key = self._get_keys() - log.info(f"Keys: {self.key}") + log.info(f"Keys: {key}") return jose.jwt.decode( token=token, key=key,