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/02/04 17:15:31 UTC

svn commit: r906544 - /cxf/trunk/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java

Author: dkulp
Date: Thu Feb  4 16:15:31 2010
New Revision: 906544

URL: http://svn.apache.org/viewvc?rev=906544&view=rev
Log:
[CXF-2651] Fix detection of slf4j

Modified:
    cxf/trunk/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java

Modified: cxf/trunk/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java
URL: http://svn.apache.org/viewvc/cxf/trunk/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java?rev=906544&r1=906543&r2=906544&view=diff
==============================================================================
--- cxf/trunk/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java (original)
+++ cxf/trunk/common/common/src/main/java/org/apache/cxf/common/logging/LogUtils.java Thu Feb  4 16:15:31 2010
@@ -77,7 +77,7 @@
                 }
             }
             if (StringUtils.isEmpty(cname)) {
-                Class.forName("org/slf4j/impl/StaticLoggerBinder");
+                Class.forName("org.slf4j.impl.StaticLoggerBinder");
                 Class<?> cls = Class.forName("org.slf4j.LoggerFactory");
                 Class<?> fcls = cls.getMethod("getILoggerFactory").invoke(null).getClass();
                 if (fcls.getName().contains("Log4j")) {