|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.logging.LogManager
public class LogManager
LogManager is used to maintain configuration properties of the
logging framework, and to manage a hierarchical namespace of all named
Logger objects.
There is only one global LogManager instance in the
application, which can be get by calling static method
LogManager.getLogManager(). This instance is created and
initialized during class initialization and cannot be changed.
The LogManager class can be specified by
java.util.logging.manager system property, if the property is unavailable or
invalid, the default class java.util.logging.LogManager will
be used.
When initialization, LogManager read its configuration from a
properties file, which by default is the "lib/logging.properties" in the JRE
directory.
However, two optional system properties can be used to customize the initial
configuration process of LogManager.
These two properties can be set in three ways, by the Preferences API, by the "java" command line property definitions, or by system property definitions passed to JNI_CreateJavaVM.
The "java.util.logging.config.class" should specifies a class name. If it is
set, this given class will be loaded and instantiated during
LogManager initialization, so that this object's default
constructor can read the initial configuration and define properties for
LogManager.
If "java.util.logging.config.class" property is not set, or it is invalid, or
some exception is thrown during the instantiation, then the
"java.util.logging.config.file" system property can be used to specify a
properties file. The LogManager will read initial
configuration from this file.
If neither of these properties is defined, or some exception is thrown
during these two properties using, the LogManager will read
its initial configuration from default properties file, as described above.
The global logging properties may include:
Handler and each must have a default constructor, these
classes will be loaded, instantiated and registered as handlers on the root
Logger (the Logger named ""). These
Handlers maybe initialized lazily.LogManager configuration
This class, together with any handler and configuration classes associated
with it, must be loaded from the system classpath when
LogManager configuration occurs.
Besides global properties, the properties for loggers and Handlers can be specified in the property files. The names of these properties will start with the complete dot separated names for the handlers or loggers.
In the LogManager's hierarchical namespace,
Loggers are organized based on their dot separated names. For
example, "x.y.z" is child of "x.y".
Levels for Loggers can be defined by properties whose name end
with ".level". Thus "alogger.level" defines a level for the logger named as
"alogger" and for all its children in the naming hierarchy. Log levels
properties are read and applied in the same order as they are specified in
the property file. The root logger's level can be defined by the property
named as ".level".
All methods on this type can be taken as being thread safe.
| Field Summary | |
|---|---|
static String |
LOGGING_MXBEAN_NAME
The String value of the LoggingMXBean's ObjectName. |
(package private) static LogManager |
manager
|
| Constructor Summary | |
|---|---|
protected |
LogManager()
Default constructor. |
| Method Summary | |
|---|---|
boolean |
addLogger(Logger logger)
Add a given logger into the hierarchical namespace. |
void |
checkAccess()
Check that the caller has LoggingPermission("control") so
that it is trusted to modify the configuration for logging framework. |
(package private) static Object |
getInstanceByClass(String className)
|
Logger |
getLogger(String name)
Get the logger with the given name |
Enumeration<String> |
getLoggerNames()
Get a Enumeration of all registered logger names |
static LogManager |
getLogManager()
Get the global LogManager instance |
(package private) static String |
getPrivilegedSystemProperty(String key)
|
String |
getProperty(String name)
Get the value of property with given name |
(package private) static String |
getSystemLineSeparator()
|
void |
readConfiguration()
Re-initialize the properties and configuration. |
void |
readConfiguration(InputStream ins)
Re-initialize the properties and configuration from the given InputStream |
void |
reset()
Reset configuration. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
static LogManager manager
public static final String LOGGING_MXBEAN_NAME
The String value of the LoggingMXBean's ObjectName.
| Constructor Detail |
|---|
protected LogManager()
LogManager instance, which can be get by
LogManager.getLogManager(. This is protected so that
application can subclass the object.
| Method Detail |
|---|
static String getSystemLineSeparator()
public void checkAccess()
LoggingPermission("control") so
that it is trusted to modify the configuration for logging framework. If
the check passes, just return, otherwise SecurityException
will be thrown.
SecurityException - if there is a security manager in operation and the invoker
of this method does not have the required security permission
LoggingPermission("control")public boolean addLogger(Logger logger)
Logger.addLogger() factory methods call this method to add
newly created Logger. This returns false if a logger with the given name
has existed in the namespace
Note that the LogManager may only retain weak references
to registered loggers. In order to prevent Logger objects
from being unexpectedly garbage collected it is necessary for
applications to maintain references to them.
logger - the logger to be added
public Logger getLogger(String name)
name - name of logger
public Enumeration<String> getLoggerNames()
Enumeration of all registered logger names
public static LogManager getLogManager()
LogManager instance
LogManager instancepublic String getProperty(String name)
name - the name of property
public void readConfiguration()
throws IOException
LogManager instantiation.
A PropertyChangeEvent must be fired.
IOException - if any IO related problems happened
SecurityException - if security manager exists and it determines that caller does
not have the required permissions to perform this actionstatic String getPrivilegedSystemProperty(String key)
static Object getInstanceByClass(String className)
public void readConfiguration(InputStream ins)
throws IOException
InputStream
A PropertyChangeEvent must be fired.
ins - the input stream.
IOException - if any IO related problems happened
SecurityException - if security manager exists and it determines that caller does
not have the required permissions to perform this actionpublic void reset()
All handlers are closed and removed from any named loggers. All loggers'
level is set to null, except the root logger's level is set to
Level.INFO.
SecurityException - if security manager exists and it determines that caller does
not have the required permissions to perform this action
|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||