You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ni...@apache.org on 2011/02/11 11:49:12 UTC

svn commit: r1069739 - in /cxf/branches/2.3.x-fixes: ./ api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java

Author: ningjiang
Date: Fri Feb 11 10:49:11 2011
New Revision: 1069739

URL: http://svn.apache.org/viewvc?rev=1069739&view=rev
Log:
Merged revisions 1069720 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1069720 | ningjiang | 2011-02-11 17:37:33 +0800 (Fri, 11 Feb 2011) | 1 line
  
  CXF-3327 PhaseInterceptorChain should warn user if the interceptor phase can't be found
........

Modified:
    cxf/branches/2.3.x-fixes/   (props changed)
    cxf/branches/2.3.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java

Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Feb 11 10:49:11 2011
@@ -1 +1 @@
-/cxf/trunk:1068320,1068337,1068525,1068867,1068877,1069249,1069318,1069492,1069500,1069716
+/cxf/trunk:1068320,1068337,1068525,1068867,1068877,1069249,1069318,1069492,1069500,1069716,1069720

Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.3.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java?rev=1069739&r1=1069738&r2=1069739&view=diff
==============================================================================
--- cxf/branches/2.3.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java (original)
+++ cxf/branches/2.3.x-fixes/api/src/main/java/org/apache/cxf/phase/PhaseInterceptorChain.java Fri Feb 11 10:49:11 2011
@@ -197,7 +197,7 @@ public class PhaseInterceptorChain imple
         Integer phase = nameMap.get(phaseName);
         
         if (phase == null) {
-            LOG.fine("Skipping interceptor " + i.getClass().getName() 
+            LOG.warning("Skipping interceptor " + i.getClass().getName() 
                 + ((phaseName == null) ? ": Phase declaration is missing." 
                 : ": Phase " + phaseName + " specified does not exist."));
         } else {