소스 검색

Close quoted expected path in log when matching

Mark Hobson 7 년 전
부모
커밋
3c07d99b0a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      web/src/main/java/org/springframework/security/web/util/matcher/AntPathRequestMatcher.java

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