This commit is contained in:
Ceki Gulcu 2005-08-13 12:09:04 +00:00
parent 235d1b15e4
commit 0fbbc583cb
2 changed files with 5 additions and 8 deletions

View File

@ -34,22 +34,20 @@ package org.slf4j;
/**
* Various constants used in the SLF4J API.
*
* @author <a href="http://www.qos.ch/log4j/">Ceki G&uuml;lc&uuml;</a>
*/
public interface Constants {
/**
* The name of the system property to set in order to instruct
* {@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_FACTORY_PROPERTY = "org.slf4j.factory";
/**
* Constant used to determine the name of the factory method for
* creating logger factories.
* <p>
* This constant currently is set to the value "getInstance".
*/
final public static String LOGGER_FACTORY_FACTORY_METHOD_NAME = "getInstance";
}

View File

@ -39,11 +39,10 @@ import java.util.Iterator;
* Markers are named objects used to enrich log statements. Conforming
* logging system Implementations of SLF4J determine how information
* conveyed by markers are used, if at all. In particular, many
* conformant logging systems ignore markers.
* conformant logging systems may ignore marker data.
*
*
* <p>Markers can contain child markers, which in turn can contain
* children of their own.
* <p>Markers can contain child markers, which in turn can contain children
* of their own.
*
* @author <a href="http://www.qos.ch/log4j/">Ceki G&uuml;lc&uuml;</a>
*/