1
0
mirror of synced 2026-08-06 02:08:01 +00:00

Add guard around debug logging involving string concatenation

This commit is contained in:
Craig Andrews
2021-04-16 12:18:44 -04:00
committed by Rob Winch
parent 0af74ce134
commit 0e6d47b082
@@ -46,7 +46,9 @@ public final class RequestedUrlRedirectInvalidSessionStrategy implements Invalid
public void onInvalidSessionDetected(HttpServletRequest request, HttpServletResponse response) throws IOException {
String destinationUrl = ServletUriComponentsBuilder.fromRequest(request).host(null).scheme(null).port(null)
.toUriString();
this.logger.debug("Starting new session (if required) and redirecting to '" + destinationUrl + "'");
if (this.logger.isDebugEnabled()) {
this.logger.debug("Starting new session (if required) and redirecting to '" + destinationUrl + "'");
}
if (this.createNewSession) {
request.getSession();
}