Author: cleclerc
Date: Fri Jan 8 18:41:37 2010
New Revision: 897291
URL: http://svn.apache.org/viewvc?rev=897291&view=rev
Log:
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.2.x-fixes/ (props changed)
cxf/branches/2.2.x-fixes/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java
Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Jan 8 18:41:37 2010
@@ -1 +1 @@
-/cxf/trunk:897226
+/cxf/trunk:897226,897290
Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
cxf/branches/2.2.x-fixes/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java?rev=897291&r1=897290&r2=897291&view=diff
==============================================================================
---
cxf/branches/2.2.x-fixes/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java
(original)
+++
cxf/branches/2.2.x-fixes/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java
Fri Jan 8 18:41:37 2010
@@ -91,7 +91,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.");
}