[
https://issues.apache.org/jira/browse/WW-3840?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
zhouyanming updated WW-3840:
----------------------------
Description:
static final Logger LOG = LoggerFactory.getLogger(MultiPartRequest.class);
should be
static final Logger LOG =
LoggerFactory.getLogger(JakartaMultiPartRequest.class);
like
protected static final Logger LOG =
LoggerFactory.getLogger(MultiPartRequestWrapper.class);
in MultiPartRequestWrapper.java
in JakartaMultiPartRequest.cleanUp(),info level log is annoying,please change
to debug
if (LOG.isDebugEnabled()) {
String msg = LocalizedTextUtil.findText(this.getClass(),
"struts.messages.removing.file",
Locale.ENGLISH, "no.message.found", new
Object[]{name, item});
LOG.debug(msg);
}
was:
static final Logger LOG = LoggerFactory.getLogger(MultiPartRequest.class);
should be
static final Logger LOG =
LoggerFactory.getLogger(JakartaMultiPartRequest.class);
like
protected static final Logger LOG =
LoggerFactory.getLogger(MultiPartRequestWrapper.class);
in MultiPartRequestWrapper.java
Summary: correct JakartaMultiPartRequest LOG and change cleanUp log
level to DEBUG (was: correct JakartaMultiPartRequest LOG)
> correct JakartaMultiPartRequest LOG and change cleanUp log level to DEBUG
> --------------------------------------------------------------------------
>
> Key: WW-3840
> URL: https://issues.apache.org/jira/browse/WW-3840
> Project: Struts 2
> Issue Type: Bug
> Reporter: zhouyanming
> Priority: Minor
>
> static final Logger LOG = LoggerFactory.getLogger(MultiPartRequest.class);
> should be
> static final Logger LOG =
> LoggerFactory.getLogger(JakartaMultiPartRequest.class);
> like
> protected static final Logger LOG =
> LoggerFactory.getLogger(MultiPartRequestWrapper.class);
> in MultiPartRequestWrapper.java
> in JakartaMultiPartRequest.cleanUp(),info level log is annoying,please change
> to debug
> if (LOG.isDebugEnabled()) {
> String msg = LocalizedTextUtil.findText(this.getClass(),
> "struts.messages.removing.file",
> Locale.ENGLISH, "no.message.found", new
> Object[]{name, item});
> LOG.debug(msg);
> }
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira