[slf4j-dev] svn commit: r578 - slf4j/trunk/src/java/org/apache/commons/logging

ceki at slf4j.org ceki at slf4j.org
Tue Mar 21 18:42:38 CET 2006


Author: ceki
Date: Tue Mar 21 18:42:37 2006
New Revision: 578

Modified:
   slf4j/trunk/src/java/org/apache/commons/logging/LogFactory.java
Log:
Added missing public fields used by Axis.

Modified: slf4j/trunk/src/java/org/apache/commons/logging/LogFactory.java
==============================================================================
--- slf4j/trunk/src/java/org/apache/commons/logging/LogFactory.java	(original)
+++ slf4j/trunk/src/java/org/apache/commons/logging/LogFactory.java	Tue Mar 21 18:42:37 2006
@@ -36,6 +36,33 @@
   static LogFactory logFactory = new SLF4FLogFactory();
 
   /**
+   * The name of the property used to identify the LogFactory implementation
+   * class name.
+   * <p>
+   * This property is not used but preserved here for compatibility.
+   */
+  public static final String FACTORY_PROPERTY =
+      "org.apache.commons.logging.LogFactory";
+
+  /**
+   * The fully qualified class name of the fallback <code>LogFactory</code>
+   * implementation class to use, if no other can be found. 
+   * 
+   * <p>This property is not used but preserved here for compatibility.
+   */
+  public static final String FACTORY_DEFAULT =
+      "org.apache.commons.logging.impl.SLF4FLogFactory";
+
+  /**
+   * The name of the properties file to search for. 
+   * <p>
+   * This property is not used but preserved here for compatibility.
+   */
+  public static final String FACTORY_PROPERTIES =
+      "commons-logging.properties";
+
+  
+  /**
    * Protected constructor that is not available for public use.
    */
   protected LogFactory() {



More information about the slf4j-dev mailing list