Return-Path: Delivered-To: apmail-incubator-cxf-commits-archive@locus.apache.org Received: (qmail 48872 invoked from network); 5 Oct 2006 20:36:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Oct 2006 20:36:32 -0000 Received: (qmail 85412 invoked by uid 500); 5 Oct 2006 20:36:31 -0000 Delivered-To: apmail-incubator-cxf-commits-archive@incubator.apache.org Received: (qmail 85348 invoked by uid 500); 5 Oct 2006 20:36:31 -0000 Mailing-List: contact cxf-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-commits@incubator.apache.org Received: (qmail 85339 invoked by uid 99); 5 Oct 2006 20:36:31 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Oct 2006 13:36:31 -0700 X-ASF-Spam-Status: No, hits=-8.6 required=5.0 tests=ALL_TRUSTED,INFO_TLD,NO_REAL_NAME Received: from [140.211.166.113] ([140.211.166.113:65258] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id BA/7A-04543-ECC65254 for ; Thu, 05 Oct 2006 13:36:30 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id B82B11A981A; Thu, 5 Oct 2006 13:36:27 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r453371 - in /incubator/cxf/trunk: api/src/main/java/org/apache/cxf/phase/ rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ testutils/src/main/java/org/apache/cxf/testutil/common/ Date: Thu, 05 Oct 2006 20:36:27 -0000 To: cxf-commits@incubator.apache.org From: dandiep@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061005203627.B82B11A981A@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: dandiep Date: Thu Oct 5 13:36:26 2006 New Revision: 453371 URL: http://svn.apache.org/viewvc?view=rev&rev=453371 Log: Remove spurious JaxWsMethodDispatcher that SVN refused to delete on my other computer.Remove ex.printStacktrace()Turn off debugging from ServerLauncher Removed: incubator/cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/JaxWsMethodDispatcher.java Modified: incubator/cxf/trunk/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java incubator/cxf/trunk/testutils/src/main/java/org/apache/cxf/testutil/common/ServerLauncher.java Modified: incubator/cxf/trunk/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java?view=diff&rev=453371&r1=453370&r2=453371 ============================================================================== --- incubator/cxf/trunk/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java (original) +++ incubator/cxf/trunk/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java Thu Oct 5 13:36:26 2006 @@ -134,7 +134,6 @@ if (LOG.isLoggable(Level.INFO)) { LogUtils.log(LOG, Level.INFO, "Interceptor has thrown exception, unwinding now", ex); } - ex.printStackTrace(); message.setContent(Exception.class, ex); unwind(message); Modified: incubator/cxf/trunk/testutils/src/main/java/org/apache/cxf/testutil/common/ServerLauncher.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/testutils/src/main/java/org/apache/cxf/testutil/common/ServerLauncher.java?view=diff&rev=453371&r1=453370&r2=453371 ============================================================================== --- incubator/cxf/trunk/testutils/src/main/java/org/apache/cxf/testutil/common/ServerLauncher.java (original) +++ incubator/cxf/trunk/testutils/src/main/java/org/apache/cxf/testutil/common/ServerLauncher.java Thu Oct 5 13:36:26 2006 @@ -48,7 +48,7 @@ final String className; - private final boolean debug = true; + private final boolean debug = false; private boolean inProcess = DEFAULT_IN_PROCESS; private AbstractTestServerBase inProcessServer;