瀏覽代碼

Close quoted expected path in log when matching

Mark Hobson 7 年之前
父節點
當前提交
3c07d99b0a

+ 1 - 1
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;