Package org.geotools.util.logging
Class Log4JLoggerFactory
- Object
-
- LoggerFactory<Logger>
-
- Log4JLoggerFactory
-
public class Log4JLoggerFactory extends LoggerFactory<Logger>
A factory for loggers that redirect all Java logging events to the Apache's Log4J framework.- Since:
- 2.4
- Author:
- Martin Desruisseaux
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedLog4JLoggerFactory()Constructs a default factory.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected LoggergetImplementation(String name)Returns the implementation to use for the logger of the specified name, ornullif the logger would delegates to Java logging anyway.static Log4JLoggerFactorygetInstance()Returns the unique instance of this factory.StringlookupConfiguration()Look up configuration information, ornullunknown.protected Loggerunwrap(Logger logger)Returns the implementation wrapped by the specified logger, ornullif none.protected Loggerwrap(String name, Logger implementation)Wraps the specified implementation in a Java logger.-
Methods inherited from class LoggerFactory
getImplementationClass, getLogger
-
-
-
-
Constructor Detail
-
Log4JLoggerFactory
protected Log4JLoggerFactory() throws NoClassDefFoundErrorConstructs a default factory.- Throws:
NoClassDefFoundError- if Apache'sLogclass was not found on the classpath.
-
-
Method Detail
-
getInstance
public static Log4JLoggerFactory getInstance() throws NoClassDefFoundError
Returns the unique instance of this factory.- Throws:
NoClassDefFoundError- if Apache'sLogclass was not found on the classpath.
-
getImplementation
protected Logger getImplementation(String name)
Returns the implementation to use for the logger of the specified name, ornullif the logger would delegates to Java logging anyway.- Specified by:
getImplementationin classLoggerFactory<Logger>- Parameters:
name- The name of the logger.- Returns:
- The logger as an object of the target logging framework (Log4J, SLF4J, etc.), or
nullif the target framework would redirect to the Java logging framework.
-
wrap
protected Logger wrap(String name, Logger implementation)
Wraps the specified implementation in a Java logger.- Specified by:
wrapin classLoggerFactory<Logger>- Parameters:
name- The name of the logger.implementation- An implementation returned byLoggerFactory.getImplementation(java.lang.String).- Returns:
- A new logger wrapping the specified implementation.
-
unwrap
protected Logger unwrap(Logger logger)
Returns the implementation wrapped by the specified logger, ornullif none.- Specified by:
unwrapin classLoggerFactory<Logger>- Parameters:
logger- The logger to test.- Returns:
- The implementation wrapped by the specified logger, or
nullif none.
-
lookupConfiguration
public String lookupConfiguration()
Description copied from class:LoggerFactoryLook up configuration information, ornullunknown.Report back details on how logging configuration is setup. Ideally including configuration filename along with any system properties used.
- Overrides:
lookupConfigurationin classLoggerFactory<Logger>- Returns:
- configuration information, or
nullunknown.
-
-