From 3c07d99b0a3e9c4a9decdf290c37f7ddf43c5b11 Mon Sep 17 00:00:00 2001 From: Mark Hobson Date: Thu, 22 Mar 2018 21:54:43 +0000 Subject: [PATCH] Close quoted expected path in log when matching --- .../security/web/util/matcher/AntPathRequestMatcher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/main/java/org/springframework/security/web/util/matcher/AntPathRequestMatcher.java b/web/src/main/java/org/springframework/security/web/util/matcher/AntPathRequestMatcher.java index b1b0659135..e66ef83199 100644 --- a/web/src/main/java/org/springframework/security/web/util/matcher/AntPathRequestMatcher.java +++ b/web/src/main/java/org/springframework/security/web/util/matcher/AntPathRequestMatcher.java @@ -136,7 +136,7 @@ public final class AntPathRequestMatcher if (logger.isDebugEnabled()) { logger.debug("Request '" + request.getMethod() + " " + getRequestPath(request) + "'" + " doesn't match '" - + this.httpMethod + " " + this.pattern); + + this.httpMethod + " " + this.pattern + "'"); } return false;