@Deprecated public class LogFactoryService extends LogFactory
LogFactory
class,
overriding the abstract getInstance
lookup methods. This is just applied in
case of the standard commons-logging
jar accidentally ending up on the classpath,
with the standard LogFactory
class performing its META-INF service discovery.
This implementation simply delegates to Spring's common Log
factory methods.Constructor and Description |
---|
LogFactoryService()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Object |
getAttribute(String name)
Deprecated.
|
String[] |
getAttributeNames()
Deprecated.
|
Log |
getInstance(Class<?> clazz)
Deprecated.
Convenience method to return a named logger.
|
Log |
getInstance(String name)
Deprecated.
Convenience method to return a named logger.
|
void |
release()
Deprecated.
|
void |
removeAttribute(String name)
Deprecated.
|
void |
setAttribute(String name,
Object value)
Deprecated.
|
getFactory, getLog, getLog, objectId, release, releaseAll
public Log getInstance(Class<?> clazz)
LogFactory
This variant just dispatches straight to LogFactory.getLog(Class)
.
getInstance
in class LogFactory
clazz
- containing Class from which a log name will be derivedpublic Log getInstance(String name)
LogFactory
This variant just dispatches straight to LogFactory.getLog(String)
.
getInstance
in class LogFactory
name
- logical name of the Log
instance to be returnedpublic void setAttribute(String name, Object value)
setAttribute
in class LogFactory
public void removeAttribute(String name)
removeAttribute
in class LogFactory
public Object getAttribute(String name)
getAttribute
in class LogFactory
public String[] getAttributeNames()
getAttributeNames
in class LogFactory
public void release()
release
in class LogFactory