Author: ceki Date: Sun Feb 25 17:34:40 2007 New Revision: 765 Modified: slf4j/trunk/slf4j-api/src/main/java/org/slf4j/ILoggerFactory.java slf4j/trunk/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java slf4j/trunk/slf4j-api/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
Log: - javadoc adjustments Modified: slf4j/trunk/slf4j-api/src/main/java/org/slf4j/ILoggerFactory.java ============================================================================== --- slf4j/trunk/slf4j-api/src/main/java/org/slf4j/ILoggerFactory.java (original) +++ slf4j/trunk/slf4j-api/src/main/java/org/slf4j/ILoggerFactory.java Sun Feb 25 17:34:40 2007 @@ -32,12 +32,7 @@ * <p>Most users retrieve [EMAIL PROTECTED] Logger} instances through the static * [EMAIL PROTECTED] LoggerFactory#getLogger(String)} method. An instance of of this * interface is bound internally with [EMAIL PROTECTED] LoggerFactory} class at - * compile time. Only developers of SLF4J conforming logging systems - * need to worry about this interface. - * - * <p>See the section <a href="http://slf4j.org/faq.html#3">Implementing - * the SLF4J API</a> in the FAQ for details on how to make your logging - * system conform to SLF4J. + * compile time. * * @author Ceki Gülcü */ @@ -46,6 +41,9 @@ /** * Return an appropriate [EMAIL PROTECTED] Logger} instance as specified by the * <code>name</code> parameter. + * <p> + * If the name parameter is equal to the string value "NULL" (case insensitive), + * then the root logger of the underlying logging system is returned. * * <p>Null-valued name arguments are considered invalid. * Modified: slf4j/trunk/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java ============================================================================== --- slf4j/trunk/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java (original) +++ slf4j/trunk/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java Sun Feb 25 17:34:40 2007 @@ -26,11 +26,11 @@ import org.slf4j.helpers.Util; import org.slf4j.impl.StaticLoggerBinder; - + /** * The <code>LoggerFactory</code> is a utility class producing Loggers for - * various logging APIs, most notably for NLOG4J and JDK 1.4 logging. Other - * implementations such as [EMAIL PROTECTED] org.slf4j.impl.NOPLogger NOPLogger} and + * various logging APIs, most notably for log4j, logback and JDK 1.4 logging. + * Other implementations such as [EMAIL PROTECTED] org.slf4j.impl.NOPLogger NOPLogger} and * [EMAIL PROTECTED] org.slf4j.impl.SimpleLogger SimpleLogger} are also supported. * * <p> Modified: slf4j/trunk/slf4j-api/src/main/java/org/slf4j/impl/StaticLoggerBinder.java ============================================================================== --- slf4j/trunk/slf4j-api/src/main/java/org/slf4j/impl/StaticLoggerBinder.java (original) +++ slf4j/trunk/slf4j-api/src/main/java/org/slf4j/impl/StaticLoggerBinder.java Sun Feb 25 17:34:40 2007 @@ -34,7 +34,7 @@ * * @author Ceki Gülcü */ -public class StaticLoggerBinder { +public class StaticLoggerBinder { /** * The unique instance of this class. _______________________________________________ dev mailing list [email protected] http://www.slf4j.org/mailman/listinfo/dev
