mirror of
https://github.com/apache/struts.git
synced 2026-08-11 01:27:14 +00:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user