Class Log4JLogFactory

  • All Implemented Interfaces:
    LogFactory

    @Deprecated
    public class Log4JLogFactory
    extends java.lang.Object
    implements LogFactory
    Deprecated.
    LogFactory implementation which creates Log4J supporting Loggers.
    • Constructor Summary

      Constructors 
      Constructor Description
      Log4JLogFactory()
      Deprecated.
       
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      Logger getLogger​(java.lang.Class clazz)
      Deprecated.
      Gets the logger associated with the specified class.
      Logger getLogger​(java.lang.String moduleName)
      Deprecated.
      Gets the logger associated with the specified module name.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Log4JLogFactory

        public Log4JLogFactory()
        Deprecated.
    • Method Detail

      • getLogger

        public Logger getLogger​(java.lang.String moduleName)
        Deprecated.
        Description copied from interface: LogFactory
        Gets the logger associated with the specified module name. The module name is used by the logger to log which module is generating the log events. The implementation of this method should return any preexisting Logger associated with this module name, rather than creating a new Logger.

        The JavaLogFactory reference implementation meets these requirements.
        Specified by:
        getLogger in interface LogFactory
        Parameters:
        moduleName - The name of the module requesting the logger.
        Returns:
        The Logger associated with this module.
      • getLogger

        public Logger getLogger​(java.lang.Class clazz)
        Deprecated.
        Description copied from interface: LogFactory
        Gets the logger associated with the specified class. The class is used by the logger to log which class is generating the log events. The implementation of this method should return any preexisting Logger associated with this class name, rather than creating a new Logger.

        The JavaLogFactory reference implementation meets these requirements.
        Specified by:
        getLogger in interface LogFactory
        Parameters:
        clazz - The name of the class requesting the logger.
        Returns:
        The Logger associated with this class.