Skip to content

Commit e076409

Browse files
committed
add debug log when setting cookie
1 parent 620b2ec commit e076409

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

restx-core/src/main/java/restx/security/RestxSessionCookieFilter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ private void updateSessionInClient(RestxResponse resp, RestxSession session) {
155155
resp.clearCookie(restxSessionCookieDescriptor.getCookieSignatureName());
156156
} else {
157157
for (Map.Entry<String, String> cookie : cookiesMap.entrySet()) {
158+
logger.debug("setting cookie: {} {}", cookie.getKey(), cookie.getValue());
158159
resp.addCookie(cookie.getKey(), cookie.getValue(), session.getExpires());
159160
}
160161
}

0 commit comments

Comments
 (0)