We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a30544f commit 1480a62Copy full SHA for 1480a62
data_rentgen/server/providers/auth/keycloak_provider.py
@@ -64,6 +64,7 @@ async def get_token_authorization_code_grant(
64
redirect_uri=self.settings.keycloak.redirect_uri,
65
)
66
except KeycloakOperationError as e:
67
+ logger.exception("Fail to get token from keycloak: %s", e) # noqa: TRY401
68
msg = "Failed to get token"
69
raise AuthorizationError(msg) from e
70
0 commit comments