You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by ja...@apache.org on 2008/11/30 17:47:48 UTC

svn commit: r721854 - /incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/log/LoggerFactory.java

Author: jalkanen
Date: Sun Nov 30 08:47:47 2008
New Revision: 721854

URL: http://svn.apache.org/viewvc?rev=721854&view=rev
Log:
Errors to System.err.

Modified:
    incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/log/LoggerFactory.java

Modified: incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/log/LoggerFactory.java
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/log/LoggerFactory.java?rev=721854&r1=721853&r2=721854&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/log/LoggerFactory.java (original)
+++ incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/log/LoggerFactory.java Sun Nov 30 08:47:47 2008
@@ -137,7 +137,7 @@
             // apparently we cannot find the slf4j log4j adapter, so we assume there is no log4j
             // available, so there is no use in registering MBeans
             c_log4jPresent = false;
-            System.out.println( "Could not find class " +SLF4J_LOG4J_ADAPTER_CLASS + ", so no dynamic log configuration here :-(" );
+            System.err.println( "Could not find class " +SLF4J_LOG4J_ADAPTER_CLASS + ", so no dynamic log configuration here :-(" );
         }
         catch( Exception e )
         {