You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit improves AbstractEndpointExceptionResolver to only invoke
the logException method for an exception that has been resolved. To
help with chaining them, a CompositeEndpointExceptionResolver has been
introduced. If no resolvers were able to resolve the exception, the
last instance will then log the exception.
Closesgh-736
Copy file name to clipboardExpand all lines: spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/AbstractEndpointExceptionResolver.java
+5-3
Original file line number
Diff line number
Diff line change
@@ -100,12 +100,14 @@ public final boolean resolveException(MessageContext messageContext, Object endp
100
100
if (this.mappedEndpoints != null && !this.mappedEndpoints.contains(mappedEndpoint)) {
101
101
returnfalse;
102
102
}
103
-
// Log exception, both at debug log level and at warn level, if desired.
0 commit comments