public class LogManager
extends java.lang.Object
LogManager
class to retreive Logger
instances or to operate on the current LoggerRepository
. When the LogManager
class is loaded
into memory the default initalzation procedure is inititated. The
default intialization procedure is described in the short log4j manual.限定符和类型 | 字段和说明 |
---|---|
static java.lang.String |
CONFIGURATOR_CLASS_KEY
已过时。
This variable is for internal use only. It will
become private in future versions.
|
static java.lang.String |
DEFAULT_CONFIGURATION_FILE
已过时。
This variable is for internal use only. It will
become package protected in future versions.
|
static java.lang.String |
DEFAULT_CONFIGURATION_KEY
已过时。
This variable is for internal use only. It will
become private in future versions.
|
static java.lang.String |
DEFAULT_INIT_OVERRIDE_KEY
已过时。
This variable is for internal use only. It will
become private in future versions.
|
构造器和说明 |
---|
LogManager() |
限定符和类型 | 方法和说明 |
---|---|
static Logger |
exists(java.lang.String name) |
static java.util.Enumeration |
getCurrentLoggers() |
static Logger |
getLogger(java.lang.Class clazz)
Retrieve the appropriate
Logger instance. |
static Logger |
getLogger(java.lang.String name)
Retrieve the appropriate
Logger instance. |
static Logger |
getLogger(java.lang.String name,
LoggerFactory factory)
Retrieve the appropriate
Logger instance. |
static LoggerRepository |
getLoggerRepository() |
static Logger |
getRootLogger()
Retrieve the appropriate root logger.
|
static void |
resetConfiguration() |
static void |
setRepositorySelector(RepositorySelector selector,
java.lang.Object guard)
Sets
LoggerFactory but only if the correct
guard is passed as parameter. |
static void |
shutdown() |
public static final java.lang.String DEFAULT_CONFIGURATION_FILE
public static final java.lang.String DEFAULT_CONFIGURATION_KEY
public static final java.lang.String CONFIGURATOR_CLASS_KEY
public static final java.lang.String DEFAULT_INIT_OVERRIDE_KEY
public static void setRepositorySelector(RepositorySelector selector, java.lang.Object guard) throws java.lang.IllegalArgumentException
LoggerFactory
but only if the correct
guard is passed as parameter.
Initally the guard is null. If the guard is
null
, then invoking this method sets the logger
factory and the guard. Following invocations will throw a IllegalArgumentException
, unless the previously set
guard
is passed as the second parameter.
This allows a high-level component to set the RepositorySelector
used by the LogManager
.
For example, when tomcat starts it will be able to install its own repository selector. However, if and when Tomcat is embedded within JBoss, then JBoss will install its own repository selector and Tomcat will use the repository selector set by its container, JBoss.
java.lang.IllegalArgumentException
public static LoggerRepository getLoggerRepository()
public static Logger getRootLogger()
public static Logger getLogger(java.lang.String name)
Logger
instance.public static Logger getLogger(java.lang.Class clazz)
Logger
instance.public static Logger getLogger(java.lang.String name, LoggerFactory factory)
Logger
instance.public static Logger exists(java.lang.String name)
public static java.util.Enumeration getCurrentLoggers()
public static void shutdown()
public static void resetConfiguration()