We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7160996 commit 4b320c1Copy full SHA for 4b320c1
src/main/java/uk/gov/hmcts/darts/common/config/security/SecurityConfig.java
@@ -207,7 +207,6 @@ Jwt getJwtFromRequest(HttpServletRequest request) {
207
try {
208
String authHeader = request.getHeader("Authorization");
209
//TODO: Remove this log statement in production code, as it may expose sensitive information
210
- log.info("Authorization header: {}", authHeader);
211
String token = authHeader.replace(TOKEN_BEARER_PREFIX, "").trim();
212
String issuer = JWTParser.parse(token).getJWTClaimsSet().getIssuer();
213
0 commit comments