Repository: cxf Updated Branches: refs/heads/3.0.x-fixes ca343e15d -> a3811331d
Fix typo in debug logs, patch from Jeansen applied, This closes #223 Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/a3811331 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/a3811331 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/a3811331 Branch: refs/heads/3.0.x-fixes Commit: a3811331d5dbd59a936094604ed809192a09e820 Parents: ca343e1 Author: Sergey Beryozkin <[email protected]> Authored: Tue Jan 17 13:04:44 2017 +0000 Committer: Sergey Beryozkin <[email protected]> Committed: Tue Jan 17 13:28:45 2017 +0000 ---------------------------------------------------------------------- core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/a3811331/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java b/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java index 775170c..81cced6 100644 --- a/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java +++ b/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java @@ -741,7 +741,7 @@ public class ClientImpl if (endpoint.getService().getDataBinding() instanceof InterceptorProvider) { InterceptorProvider p = (InterceptorProvider)endpoint.getService().getDataBinding(); if (LOG.isLoggable(Level.FINE)) { - LOG.fine("Interceptors contributed by databinging: " + p.getInInterceptors()); + LOG.fine("Interceptors contributed by databinding: " + p.getInInterceptors()); } chain = inboundChainCache.get(pm.getInPhases(), i1, i2, i3, i4, p.getInInterceptors());
