[
https://issues.apache.org/struts/browse/WW-3096?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=46140#action_46140
]
zhouyanming commented on WW-3096:
---------------------------------
I'm use java.util.logging in google appengine,how to turn down this log?
> change log level from "warn" to "debug" in
> org.apache.struts2.components.ServletUrlRenderer
> -------------------------------------------------------------------------------------------
>
> Key: WW-3096
> URL: https://issues.apache.org/struts/browse/WW-3096
> Project: Struts 2
> Issue Type: Improvement
> Reporter: zhouyanming
>
> we are not always only use struts2,sometimes need use spring action
> process,like <s2:form action="/thisisspringaction">
> so change
> if (namespace != null) {
> LOG.warn("No configuration found for the specified action: '" +
> actionName + "' in namespace: '" + namespace + "'. Form action defaulting to
> 'action' attribute's literal value.");
> }
> to
> if (namespace != null && LOG.isDebugEnabled())) {
> LOG.debug("No configuration found for the specified action: '"
> + actionName + "' in namespace: '" + namespace + "'. Form action defaulting
> to 'action' attribute's literal value.");
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.