Class LogFactoryService

java.lang.Object
org.apache.commons.logging.LogFactory
org.apache.commons.logging.LogFactoryService

@Deprecated public class LogFactoryService extends LogFactory
Deprecated.
since it is only meant to be used in the above-mentioned fallback scenario
A minimal subclass of the standard Apache Commons Logging's 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.
Since:
5.1
Author:
Juergen Hoeller
  • Constructor Details

    • LogFactoryService

      public LogFactoryService()
      Deprecated.
  • Method Details

    • getInstance

      public Log getInstance(Class<?> clazz)
      Deprecated.
      Description copied from class: LogFactory
      Convenience method to return a named logger.

      This variant just dispatches straight to LogFactory.getLog(Class).

      Overrides:
      getInstance in class LogFactory
      Parameters:
      clazz - containing Class from which a log name will be derived
    • getInstance

      public Log getInstance(String name)
      Deprecated.
      Description copied from class: LogFactory
      Convenience method to return a named logger.

      This variant just dispatches straight to LogFactory.getLog(String).

      Overrides:
      getInstance in class LogFactory
      Parameters:
      name - logical name of the Log instance to be returned
    • setAttribute

      public void setAttribute(String name, Object value)
      Deprecated.
    • removeAttribute

      public void removeAttribute(String name)
      Deprecated.
    • getAttribute

      public Object getAttribute(String name)
      Deprecated.
    • getAttributeNames

      public String[] getAttributeNames()
      Deprecated.
    • release

      public void release()
      Deprecated.