Package org.apache.commons.jcs3.log
Class JulLogFactory
java.lang.Object
org.apache.commons.jcs3.log.JulLogFactory
- All Implemented Interfaces:
- LogFactory
This is a SPI factory implementation for java.util.logging
- 
Field SummaryFields inherited from interface org.apache.commons.jcs3.log.LogFactoryROOT_LOGGER_NAME
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionReturns a Log using the fully qualified name of the Class as the Log name.Returns a Log with the specified name.getName()Return the name of the Log subsystem managed by this factoryvoidshutdown()Shutdown the logging system if the logging system supports it.
- 
Constructor Details- 
JulLogFactorypublic JulLogFactory()
 
- 
- 
Method Details- 
getNameReturn the name of the Log subsystem managed by this factory- Specified by:
- getNamein interface- LogFactory
- Returns:
- the name of the log subsystem
 
- 
shutdownShutdown the logging system if the logging system supports it.- Specified by:
- shutdownin interface- LogFactory
 
- 
getLogReturns a Log using the fully qualified name of the Class as the Log name.- Specified by:
- getLogin interface- LogFactory
- Parameters:
- clazz- The Class whose name should be used as the Log name.
- Returns:
- The Log.
 
- 
getLogReturns a Log with the specified name.- Specified by:
- getLogin interface- LogFactory
- Parameters:
- name- The logger name.
- Returns:
- The Log.
 
 
-