Uses of Class
org.apache.log4j.Level

Packages that use Level
Package
Description
An rather minimal but sufficient implementation redirecting all calls to a log4j logger to a logback logger.
 
  • Uses of Level in org.apache.log4j

    Fields in org.apache.log4j declared as Level
    Modifier and Type
    Field
    Description
    static final Level
    Level.ALL
    The ALL has the lowest possible rank and is intended to turn on all logging.
    static final Level
    Level.DEBUG
    The DEBUG Level designates fine-grained informational events that are most useful to debug an application.
    static final Level
    Level.ERROR
    The ERROR level designates error events that might still allow the application to continue running.
    static final Level
    Level.FATAL
    The FATAL level designates very severe error events that will presumably lead the application to abort.
    static final Level
    Level.INFO
    The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.
    static final Level
    Level.OFF
    The OFF has the highest possible rank and is intended to turn off logging.
    static final Level
    Level.TRACE
    The TRACE Level designates finer-grained informational events than the DEBUG level.
    static final Level
    Level.WARN
    The WARN level designates potentially harmful situations.
    Methods in org.apache.log4j that return Level
    Modifier and Type
    Method
    Description
    Return the level in effect for this category/logger.
    final Level
    Category.getLevel()
    Returns the assigned Level, if any, for this Category.
    final Level
    Category.getPriority()
    Deprecated.
    Please use Category.getLevel() instead.
    static Level
    Level.toLevel(int val)
    Convert an integer passed as argument to a level.
    static Level
    Level.toLevel(int val, Level defaultLevel)
    Convert an integer passed as argument to a level.
    static Level
    Level.toLevel(String sArg)
    Convert the string passed as argument to a level.
    static Level
    Level.toLevel(String sArg, Level defaultLevel)
    Convert the string passed as argument to a level.
    Methods in org.apache.log4j with parameters of type Level
    Modifier and Type
    Method
    Description
    void
    Category.setLevel(Level level)
     
    static Level
    Level.toLevel(int val, Level defaultLevel)
    Convert an integer passed as argument to a level.
    static Level
    Level.toLevel(String sArg, Level defaultLevel)
    Convert the string passed as argument to a level.
  • Uses of Level in org.apache.log4j.spi

    Methods in org.apache.log4j.spi that return Level
    Modifier and Type
    Method
    Description
    LoggerRepository.getThreshold()
    Get the repository-wide threshold.
    Methods in org.apache.log4j.spi with parameters of type Level
    Modifier and Type
    Method
    Description
    void
    LoggerRepository.setThreshold(Level level)
    Set the repository-wide threshold.