[slf4j-dev] svn commit: r125 - slf4j/branches/marker-experiment/src/java/org/slf4j

ceki at slf4j.org ceki at slf4j.org
Wed Jul 13 19:51:58 CEST 2005


Author: ceki
Date: Wed Jul 13 19:51:57 2005
New Revision: 125

Modified:
   slf4j/branches/marker-experiment/src/java/org/slf4j/Constants.java
Log:
minor updates

Modified: slf4j/branches/marker-experiment/src/java/org/slf4j/Constants.java
==============================================================================
--- slf4j/branches/marker-experiment/src/java/org/slf4j/Constants.java	(original)
+++ slf4j/branches/marker-experiment/src/java/org/slf4j/Constants.java	Wed Jul 13 19:51:57 2005
@@ -36,19 +36,20 @@
  * Various constants used in the SLF4J API.
  */
 public interface Constants {
+    
 	/**
 	 * The name of the system property to set in order to instruct
-	 * {@link LoggerFactory} class to use a specific factory adapter.
+	 * {@link LoggerFactory} class to use a specific ILoggerFactory.
 	 * <p>
 	 * This constant is currently set to the value "org.slf4j.factory".
 	 */
-	final public static String LOGGER_FA_FACTORY_PROPERTY = "org.slf4j.factory";
+	final public static String LOGGER_FACTORY_PROPERTY = "org.slf4j.factory";
 	
 	/**
-	 * Constant used to determined the name of the factory method for
-	 * creating factory adapters.
+	 * Constant used to determine the name of the factory method for
+	 * creating logger factories.
 	 * <p>
-	 * This constant current is set to the value "getInstance".
+	 * This constant currently is set to the value "getInstance".
 	 */
-	final public static String FA_FACTORY_METHOD_NAME = "getInstance";
+	final public static String LOGGER_FACTORY_FACTORY_METHOD_NAME = "getInstance";
 }



More information about the slf4j-dev mailing list