Repository: cxf Updated Branches: refs/heads/master 43a42f25e -> 4361c6052
Minor change:fix log usage Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/4361c605 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/4361c605 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/4361c605 Branch: refs/heads/master Commit: 4361c6052211f924395cfa1290733b1df7466043 Parents: 43a42f2 Author: Jim Ma <[email protected]> Authored: Thu Jan 22 11:43:35 2015 +0800 Committer: Jim Ma <[email protected]> Committed: Thu Jan 22 11:43:35 2015 +0800 ---------------------------------------------------------------------- .../org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/4361c605/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java ---------------------------------------------------------------------- diff --git a/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java b/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java index a8f9ca9..f2fedd8 100644 --- a/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java +++ b/rt/ws/policy/src/main/java/org/apache/cxf/ws/policy/PolicyVerificationInInterceptor.java @@ -104,7 +104,7 @@ public class PolicyVerificationInInterceptor extends AbstractPolicyInterceptor { message.getExchange().put("ws-policy.validated.alternatives", usedAlternatives); } } catch (PolicyException ex) { - LOG.log(Level.SEVERE, "Inbound policy verification failed: " + ex.getMessage(), e); + LOG.log(Level.SEVERE, "Inbound policy verification failed: " + ex.getMessage()); //To check if there is ws addressing policy violation and throw WSA specific //exception to pass jaxws2.2 tests if (ex.getMessage().indexOf("Addressing") > -1) {
