diff --git a/spring-websocket/src/main/java/org/springframework/web/socket/sockjs/transport/TransportHandlingSockJsService.java b/spring-websocket/src/main/java/org/springframework/web/socket/sockjs/transport/TransportHandlingSockJsService.java index dd44e533cb9..fc0cb7318c9 100644 --- a/spring-websocket/src/main/java/org/springframework/web/socket/sockjs/transport/TransportHandlingSockJsService.java +++ b/spring-websocket/src/main/java/org/springframework/web/socket/sockjs/transport/TransportHandlingSockJsService.java @@ -309,7 +309,7 @@ public class TransportHandlingSockJsService extends AbstractSockJsService implem Principal currentPrincipal = request.getPrincipal(); if (!principal.equals(currentPrincipal) && (currentPrincipal == null || !principal.getName().equals(currentPrincipal.getName()))) { - logger.debug("The user for the session and the request do not match¶."); + logger.debug("The user for the session and the request do not match."); response.setStatusCode(HttpStatus.NOT_FOUND); return; }