Skip to content

Commit 64fcb8b

Browse files
AXIS2-6065 Small problem with incorrect log output in AxisServlet#processAxisFault
1 parent aa44850 commit 64fcb8b

File tree

1 file changed

+1
-1
lines changed
  • modules/transport/http/src/main/java/org/apache/axis2/transport/http

1 file changed

+1
-1
lines changed

modules/transport/http/src/main/java/org/apache/axis2/transport/http/AxisServlet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ void processAxisFault(MessageContext msgContext, HttpServletResponse res,
418418
String status =
419419
(String) msgContext.getProperty(Constants.HTTP_RESPONSE_STATE);
420420
if (status == null) {
421-
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");
421+
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");
422422
res.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
423423
} else {
424424
log.error("processAxisFault() found an HTTP status from the MessageContext instance, setting HttpServletResponse status to: " + status);

0 commit comments

Comments
 (0)