Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 18781 invoked from network); 7 Jul 2009 19:45:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 7 Jul 2009 19:45:56 -0000 Received: (qmail 31584 invoked by uid 500); 7 Jul 2009 19:46:06 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 31502 invoked by uid 500); 7 Jul 2009 19:46:06 -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 31493 invoked by uid 99); 7 Jul 2009 19:46:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Jul 2009 19:46:06 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Jul 2009 19:45:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C2D0A23888EC; Tue, 7 Jul 2009 19:45:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r791955 - in /cxf/branches/2.2.x-fixes: ./ api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java Date: Tue, 07 Jul 2009 19:45:33 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090707194533.C2D0A23888EC@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Tue Jul 7 19:45:33 2009 New Revision: 791955 URL: http://svn.apache.org/viewvc?rev=791955&view=rev Log: Merged revisions 791947 via svnmerge from https://svn.apache.org/repos/asf/cxf/trunk ........ r791947 | dkulp | 2009-07-07 15:26:39 -0400 (Tue, 07 Jul 2009) | 1 line [CXF-2307] Update logging levels for exceptions ........ Modified: cxf/branches/2.2.x-fixes/ (props changed) cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java Propchange: cxf/branches/2.2.x-fixes/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Tue Jul 7 19:45:33 2009 @@ -1 +1 @@ -/cxf/trunk:782728-782730,783097,783294,783396,784059,784181-784184,784893,784895,785279-785282,785468,785621,785624,785651,785734,785866,786142,786271-786272,786395,786512,786514,786582-786583,786638,786647,786850,787200,787269,787277-787279,787290-787291,787305,787323,787366,787849,788030,788060,788187,788444,788451,788703,788752,788774,788819-788820,789013,789371,789387,789420,789527-789530,789704-789705,789788,789811,789896-789901,790074,790094,790134,790188,790294,790553,790637-790644,790868,791301,791354,791538,791753 +/cxf/trunk:782728-782730,783097,783294,783396,784059,784181-784184,784893,784895,785279-785282,785468,785621,785624,785651,785734,785866,786142,786271-786272,786395,786512,786514,786582-786583,786638,786647,786850,787200,787269,787277-787279,787290-787291,787305,787323,787366,787849,788030,788060,788187,788444,788451,788703,788752,788774,788819-788820,789013,789371,789387,789420,789527-789530,789704-789705,789788,789811,789896-789901,790074,790094,790134,790188,790294,790553,790637-790644,790868,791301,791354,791538,791753,791947 Propchange: cxf/branches/2.2.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java?rev=791955&r1=791954&r2=791955&view=diff ============================================================================== --- cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java (original) +++ cxf/branches/2.2.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java Tue Jul 7 19:45:33 2009 @@ -264,12 +264,12 @@ + t.getClass().getName() + ": " + ex.getMessage()); } - } else if (LOG.isLoggable(Level.INFO)) { + } else if (LOG.isLoggable(Level.WARNING)) { if (mode == FaultMode.UNCHECKED_APPLICATION_FAULT) { - LogUtils.log(LOG, Level.INFO, + LogUtils.log(LOG, Level.WARNING, "Application has thrown exception, unwinding now", ex); } else { - LogUtils.log(LOG, Level.INFO, + LogUtils.log(LOG, Level.WARNING, "Interceptor has thrown exception, unwinding now", ex); } }