Uses of Class
org.apache.commons.logging.LogFactory
-
Packages that use LogFactory Package Description org.apache.commons.logging Simple wrapper API around multiple logging APIs.org.apache.commons.logging.impl Concrete implementations of commons-logging wrapper APIs. -
-
Uses of LogFactory in org.apache.commons.logging
Fields in org.apache.commons.logging declared as LogFactory Modifier and Type Field Description protected static LogFactory
LogFactory. nullClassLoaderFactory
Deprecated.since 1.1.2Methods in org.apache.commons.logging that return LogFactory Modifier and Type Method Description private static LogFactory
LogFactory. getCachedFactory(java.lang.ClassLoader contextClassLoader)
Check cached factories (keyed by contextClassLoader)static LogFactory
LogFactory. getFactory()
Construct (if necessary) and return aLogFactory
instance, using the following ordered lookup procedure to determine the name of the implementation class to be loaded.protected static LogFactory
LogFactory. newFactory(java.lang.String factoryClass, java.lang.ClassLoader classLoader)
Method provided for backwards compatibility; see newFactory version that takes 3 parameters.protected static LogFactory
LogFactory. newFactory(java.lang.String factoryClass, java.lang.ClassLoader classLoader, java.lang.ClassLoader contextClassLoader)
Return a new instance of the specifiedLogFactory
implementation class, loaded by the specified class loader.Methods in org.apache.commons.logging with parameters of type LogFactory Modifier and Type Method Description private static void
LogFactory. cacheFactory(java.lang.ClassLoader classLoader, LogFactory factory)
Remember this factory, so later calls to LogFactory.getCachedFactory can return the previously created object (together with all its cached Log objects). -
Uses of LogFactory in org.apache.commons.logging.impl
Subclasses of LogFactory in org.apache.commons.logging.impl Modifier and Type Class Description class
LogFactoryImpl
Concrete subclass ofLogFactory
that implements the following algorithm to dynamically select a logging implementation class to instantiate a wrapper for: Use a factory configuration attribute namedorg.apache.commons.logging.Log
to identify the requested implementation class. Use theorg.apache.commons.logging.Log
system property to identify the requested implementation class. If Log4J is available, return an instance oforg.apache.commons.logging.impl.Log4JLogger
. If JDK 1.4 or later is available, return an instance oforg.apache.commons.logging.impl.Jdk14Logger
. Otherwise, return an instance oforg.apache.commons.logging.impl.SimpleLog
.
-