Skip to content

Commit 48b857e

Browse files
committed
fixed logger variable name
1 parent c09b63c commit 48b857e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

openid-connect-server/src/main/java/org/mitre/oauth2/service/impl/DefaultIntrospectionResultAssembler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public Map<String, Object> assembleFrom(OAuth2AccessTokenEntity accessToken, Use
5959
result.put(EXPIRES_AT, dateFormat.valueToString(accessToken.getExpiration()));
6060
result.put(EXP, accessToken.getExpiration().getTime() / 1000L);
6161
} catch (ParseException e) {
62-
log.error("Parse exception in token introspection", e);
62+
logger.error("Parse exception in token introspection", e);
6363
}
6464
}
6565

@@ -95,7 +95,7 @@ public Map<String, Object> assembleFrom(OAuth2RefreshTokenEntity refreshToken, U
9595
result.put(EXPIRES_AT, dateFormat.valueToString(refreshToken.getExpiration()));
9696
result.put(EXP, refreshToken.getExpiration().getTime() / 1000L);
9797
} catch (ParseException e) {
98-
log.error("Parse exception in token introspection", e);
98+
logger.error("Parse exception in token introspection", e);
9999
}
100100
}
101101

0 commit comments

Comments
 (0)