SEC-1407: Correct logger category in MatcherType.

This commit is contained in:
Luke Taylor 2010-03-01 02:03:32 +00:00
parent 90a7f1f00e
commit e5a875d752

View File

@ -23,7 +23,7 @@ public enum MatcherType {
regex (RegexRequestMatcher.class),
ciRegex (RegexRequestMatcher.class);
private static final Log logger = LogFactory.getLog(HttpSecurityBeanDefinitionParser.class);
private static final Log logger = LogFactory.getLog(MatcherType.class);
private static final String ATT_MATCHER_TYPE = "request-matcher";
private static final String ATT_PATH_TYPE = "path-type";