This is an automated email from the ASF dual-hosted git repository.
robertlazarski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git
The following commit(s) were added to refs/heads/master by this push:
new 64fcb8b157 AXIS2-6065 Small problem with incorrect log output in
AxisServlet#processAxisFault
64fcb8b157 is described below
commit 64fcb8b157cd95fd5ba9df32fef0a6e2b1bd8f07
Author: Robert Lazarski <[email protected]>
AuthorDate: Wed Feb 12 08:49:34 2025 -1000
AXIS2-6065 Small problem with incorrect log output in
AxisServlet#processAxisFault
---
.../http/src/main/java/org/apache/axis2/transport/http/AxisServlet.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/transport/http/src/main/java/org/apache/axis2/transport/http/AxisServlet.java
b/modules/transport/http/src/main/java/org/apache/axis2/transport/http/AxisServlet.java
index 68c4a374d7..503e43ec7c 100644
---
a/modules/transport/http/src/main/java/org/apache/axis2/transport/http/AxisServlet.java
+++
b/modules/transport/http/src/main/java/org/apache/axis2/transport/http/AxisServlet.java
@@ -418,7 +418,7 @@ public class AxisServlet extends HttpServlet {
String status =
(String)
msgContext.getProperty(Constants.HTTP_RESPONSE_STATE);
if (status == null) {
- log.info("processAxisFault() on error message: " +
e.getMessage() + " , found a null HTTP status from the MessageContext instance,
setting HttpServletResponse status to
HttpServletResponse.SC_INTERNAL_SERVER_ERROR");
+ log.debug("processAxisFault() on error message: " +
e.getMessage() + " , found a null HTTP status from the MessageContext instance,
setting HttpServletResponse status to
HttpServletResponse.SC_INTERNAL_SERVER_ERROR");
res.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
} else {
log.error("processAxisFault() found an HTTP status from
the MessageContext instance, setting HttpServletResponse status to: " + status);