Skip to content

Commit d8f190f

Browse files
alambarejlahovnik
authored andcommitted
refactor: add debug in oidc plugin
1 parent 28cc1e4 commit d8f190f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

eodag/plugins/authentication/openid_connect.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ def decode_jwt_token(self, token: str) -> dict[str, Any]:
119119
algorithms=self.algorithms,
120120
)
121121
except (jwt.exceptions.InvalidTokenError, jwt.exceptions.DecodeError) as e:
122+
logger.debug("token value: %s", token)
122123
raise AuthenticationError(e)
123124

124125
def _get_access_token(self) -> str:

0 commit comments

Comments
 (0)