WW-4090 Uses warn level instead of debug

git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_3_14_2_X@1488900 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Lukasz Lenart
2013-06-03 08:51:59 +00:00
parent 8b4fc81dae
commit cfb6e9afba
@@ -435,8 +435,8 @@ public class DefaultActionMapper implements ActionMapper {
if (rawActionName.matches(allowedActionNames)) {
return rawActionName;
} else {
if (LOG.isDebugEnabled()) {
LOG.debug("Action [#0] do not match allowed action names pattern [#1], cleaning it up!",
if (LOG.isWarnEnabled()) {
LOG.warn("Action [#0] do not match allowed action names pattern [#1], cleaning it up!",
rawActionName, allowedActionNames);
}
String cleanActionName = rawActionName;