mirror of https://github.com/qos-ch/slf4j
This commit is contained in:
parent
235d1b15e4
commit
0fbbc583cb
|
|
@ -34,22 +34,20 @@ package org.slf4j;
|
|||
|
||||
/**
|
||||
* Various constants used in the SLF4J API.
|
||||
*
|
||||
* @author <a href="http://www.qos.ch/log4j/">Ceki Gülcü</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";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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ülcü</a>
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue