Module org.snmp4j

Class ConsoleLogFactory


  • public class ConsoleLogFactory
    extends LogFactory
    The ConsoleLogFactory implements a SNMP4J LogFactory for system out. In order to use simple stdout logging for SNMP4J, the static LogFactory.setLogFactory(org.snmp4j.log.LogFactory) method has to be used before any SNMP4J class is referenced or instantiated.
    Since:
    1.6
    Version:
    1.7
    Author:
    Frank Fock
    • Constructor Detail

      • ConsoleLogFactory

        public ConsoleLogFactory()
    • Method Detail

      • createLogger

        protected LogAdapter createLogger​(java.lang.Class<?> c)
        Description copied from class: LogFactory
        Creates a Logger for the specified class. This method returns the NoLogger logger instance which disables logging. Overwrite this method the return a custom logger to enable logging for SNMP4J.
        Overrides:
        createLogger in class LogFactory
        Parameters:
        c - the class for which a logger needs to be created.
        Returns:
        the LogAdapter instance.
      • createLogger

        protected LogAdapter createLogger​(java.lang.String className)
        Description copied from class: LogFactory
        Creates a Logger for the specified class. This method returns the NoLogger logger instance which disables logging. Overwrite this method the return a custom logger to enable logging for SNMP4J.
        Overrides:
        createLogger in class LogFactory
        Parameters:
        className - the class name for which a logger needs to be created.
        Returns:
        the LogAdapter instance.