Package org.apache.juli
Class ClassLoaderLogManager
java.lang.Object
java.util.logging.LogManager
org.apache.juli.ClassLoaderLogManager
Per classloader LogManager implementation. For light debugging, set the system property
org.apache.juli.ClassLoaderLogManager.debug=true
. Short configuration information will be sent to
System.err
.-
Nested Class Summary
Modifier and TypeClassDescriptionprotected static final class
protected static final class
protected static class
This class is needed to instantiate the root of each per classloader hierarchy. -
Field Summary
Modifier and TypeFieldDescriptionprotected final Map
<ClassLoader, ClassLoaderLogManager.ClassLoaderLogInfo> Map containing the classloader information, keyed per classloader.static final String
protected final ThreadLocal
<String> This prefix is used to allow using prefixes for the properties names of handlers and their subcomponents.protected boolean
Determines if the shutdown hook is used to perform any necessary clean-up such as flushing buffered handlers on JVM shutdown.Fields inherited from class java.util.logging.LogManager
LOGGING_MXBEAN_NAME
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Add the specified logger to the classloader local configuration.protected ClassLoaderLogManager.ClassLoaderLogInfo
getClassLoaderInfo
(ClassLoader classLoader) Retrieve the configuration associated with the specified classloader.Get the logger associated with the specified name inside the classloader local configuration.Get an enumeration of the logger names currently defined in the classloader local configuration.getProperty
(String name) Get the value of the specified property in the classloader local configuration.boolean
void
void
protected void
readConfiguration
(InputStream is, ClassLoader classLoader) Load specified configuration.protected void
readConfiguration
(ClassLoader classLoader) Read configuration for the specified classloader.protected String
System property replacement in the given string.void
reset()
void
setUseShutdownHook
(boolean useShutdownHook) void
shutdown()
Shuts down the logging system.Methods inherited from class java.util.logging.LogManager
addConfigurationListener, checkAccess, getLoggingMXBean, getLogManager, removeConfigurationListener, updateConfiguration, updateConfiguration
-
Field Details
-
DEBUG_PROPERTY
-
classLoaderLoggers
Map containing the classloader information, keyed per classloader. A weak hashmap is used to ensure no classloader reference is leaked from application redeployment. -
prefix
This prefix is used to allow using prefixes for the properties names of handlers and their subcomponents. -
useShutdownHook
protected volatile boolean useShutdownHookDetermines if the shutdown hook is used to perform any necessary clean-up such as flushing buffered handlers on JVM shutdown. Defaults totrue
but may be set to false if another component ensures thatshutdown()
is called.
-
-
Constructor Details
-
ClassLoaderLogManager
public ClassLoaderLogManager()
-
-
Method Details
-
isUseShutdownHook
public boolean isUseShutdownHook() -
setUseShutdownHook
public void setUseShutdownHook(boolean useShutdownHook) -
addLogger
Add the specified logger to the classloader local configuration.- Overrides:
addLogger
in classLogManager
- Parameters:
logger
- The logger to be added
-
getLogger
Get the logger associated with the specified name inside the classloader local configuration. If this returns null, and the call originated for Logger.getLogger, a new logger with the specified name will be instantiated and added using addLogger.- Overrides:
getLogger
in classLogManager
- Parameters:
name
- The name of the logger to retrieve
-
getLoggerNames
Get an enumeration of the logger names currently defined in the classloader local configuration.- Overrides:
getLoggerNames
in classLogManager
-
getProperty
Get the value of the specified property in the classloader local configuration.- Overrides:
getProperty
in classLogManager
- Parameters:
name
- The property name
-
readConfiguration
- Overrides:
readConfiguration
in classLogManager
- Throws:
IOException
SecurityException
-
readConfiguration
- Overrides:
readConfiguration
in classLogManager
- Throws:
IOException
SecurityException
-
reset
- Overrides:
reset
in classLogManager
- Throws:
SecurityException
-
shutdown
public void shutdown()Shuts down the logging system. -
getClassLoaderInfo
Retrieve the configuration associated with the specified classloader. If it does not exist, it will be created. If no class loader is specified, the class loader used to load this class is used.- Parameters:
classLoader
- The class loader for which we will retrieve or build the configuration- Returns:
- the log configuration
-
readConfiguration
Read configuration for the specified classloader.- Parameters:
classLoader
- The classloader- Throws:
IOException
- Error reading configuration
-
readConfiguration
Load specified configuration.- Parameters:
is
- InputStream to the properties fileclassLoader
- for which the configuration will be loaded- Throws:
IOException
- If something wrong happens during loading
-
replace
-