Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DDAE3116B4 for ; Thu, 21 Aug 2014 06:37:29 +0000 (UTC) Received: (qmail 93844 invoked by uid 500); 21 Aug 2014 06:37:29 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 93780 invoked by uid 500); 21 Aug 2014 06:37:29 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 93771 invoked by uid 99); 21 Aug 2014 06:37:29 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Aug 2014 06:37:29 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 6FAF99BA98C; Thu, 21 Aug 2014 06:37:28 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ffang@apache.org To: commits@cxf.apache.org Message-Id: <3904dce1a9a44bbfbc925e95ad8f8df3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: [CXF-5922]remove debug log (cherry picked from commit 913eff1bcef7c857a800cd6239b7a1104b81bc14) Date: Thu, 21 Aug 2014 06:37:28 +0000 (UTC) Repository: cxf Updated Branches: refs/heads/2.7.x-fixes e7dae9b2f -> 2314106f6 [CXF-5922]remove debug log (cherry picked from commit 913eff1bcef7c857a800cd6239b7a1104b81bc14) Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/2314106f Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/2314106f Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/2314106f Branch: refs/heads/2.7.x-fixes Commit: 2314106f64d96f90ea434115cb43006d133a60b2 Parents: e7dae9b Author: Freeman Fang Authored: Thu Aug 21 14:31:03 2014 +0800 Committer: Freeman Fang Committed: Thu Aug 21 14:37:04 2014 +0800 ---------------------------------------------------------------------- .../cxf/transport/http/auth/WSDLGetAuthenticatorInterceptor.java | 4 ---- 1 file changed, 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/2314106f/rt/transports/http/src/main/java/org/apache/cxf/transport/http/auth/WSDLGetAuthenticatorInterceptor.java ---------------------------------------------------------------------- diff --git a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/auth/WSDLGetAuthenticatorInterceptor.java b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/auth/WSDLGetAuthenticatorInterceptor.java index ffff019..263bba0 100644 --- a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/auth/WSDLGetAuthenticatorInterceptor.java +++ b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/auth/WSDLGetAuthenticatorInterceptor.java @@ -70,14 +70,11 @@ public class WSDLGetAuthenticatorInterceptor extends AbstractPhaseInterceptor no authorization header, should return 401"); handle401response(message, endpoint); return; } else { Subject subject = (Subject)authenticate(policy.getUserName(), policy.getPassword()); if (subject == null) { - LOG.info("=====> login failed, should return 401"); handle401response(message, endpoint); return; } @@ -93,7 +90,6 @@ public class WSDLGetAuthenticatorInterceptor extends AbstractPhaseInterceptor reset response header"); message.getInterceptorChain().pause(); }