fixed logger variable name
parent
c09b63c69f
commit
48b857eb85
|
@ -59,7 +59,7 @@ public class DefaultIntrospectionResultAssembler implements IntrospectionResultA
|
||||||
result.put(EXPIRES_AT, dateFormat.valueToString(accessToken.getExpiration()));
|
result.put(EXPIRES_AT, dateFormat.valueToString(accessToken.getExpiration()));
|
||||||
result.put(EXP, accessToken.getExpiration().getTime() / 1000L);
|
result.put(EXP, accessToken.getExpiration().getTime() / 1000L);
|
||||||
} catch (ParseException e) {
|
} catch (ParseException e) {
|
||||||
log.error("Parse exception in token introspection", e);
|
logger.error("Parse exception in token introspection", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@ public class DefaultIntrospectionResultAssembler implements IntrospectionResultA
|
||||||
result.put(EXPIRES_AT, dateFormat.valueToString(refreshToken.getExpiration()));
|
result.put(EXPIRES_AT, dateFormat.valueToString(refreshToken.getExpiration()));
|
||||||
result.put(EXP, refreshToken.getExpiration().getTime() / 1000L);
|
result.put(EXP, refreshToken.getExpiration().getTime() / 1000L);
|
||||||
} catch (ParseException e) {
|
} catch (ParseException e) {
|
||||||
log.error("Parse exception in token introspection", e);
|
logger.error("Parse exception in token introspection", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue