You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2010/01/11 18:31:09 UTC

svn commit: r897959 - in /cxf/branches/2.1.x-fixes: ./ common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java

Author: dkulp
Date: Mon Jan 11 17:31:09 2010
New Revision: 897959

URL: http://svn.apache.org/viewvc?rev=897959&view=rev
Log:
Merged revisions 897291 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/branches/2.2.x-fixes

................
  r897291 | cleclerc | 2010-01-08 13:41:37 -0500 (Fri, 08 Jan 2010) | 9 lines
  
  Merged revisions 897290 via svnmerge from 
  https://svn.apache.org/repos/asf/cxf/trunk
  
  ........
    r897290 | cleclerc | 2010-01-08 19:36:46 +0100 (Fri, 08 Jan 2010) | 1 line
    
    [CXF-2610] trim logger class name
  ........
................

Modified:
    cxf/branches/2.1.x-fixes/   (props changed)
    cxf/branches/2.1.x-fixes/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java

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

Modified: cxf/branches/2.1.x-fixes/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.1.x-fixes/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java?rev=897959&r1=897958&r2=897959&view=diff
==============================================================================
--- cxf/branches/2.1.x-fixes/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java (original)
+++ cxf/branches/2.1.x-fixes/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java Mon Jan 11 17:31:09 2010
@@ -77,7 +77,7 @@
                 }
             }
             if (!StringUtils.isEmpty(cname)) {
-                loggerClass = Class.forName(cname, true,
+                loggerClass = Class.forName(cname.trim(), true,
                                             Thread.currentThread().getContextClassLoader());
                 getLogger(LogUtils.class).fine("Using " + loggerClass.getName() + " for logging.");
             }