Repository: cxf Updated Branches: refs/heads/3.1.x-fixes 2ee2e3fad -> d52a039ff
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/d52a039f Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/d52a039f Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/d52a039f Branch: refs/heads/3.1.x-fixes Commit: d52a039ff9be240df926b3fec46f18fde4acd811 Parents: 2ee2e3f Author: Sergey Beryozkin <[email protected]> Authored: Tue Jan 17 13:04:44 2017 +0000 Committer: Sergey Beryozkin <[email protected]> Committed: Tue Jan 17 13:27:32 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/d52a039f/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 848d3bc..282eeb0 100644 --- a/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java +++ b/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java @@ -737,7 +737,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());
