Logback API
Version 0.9.8

Uses of Class
ch.qos.logback.classic.Level

Packages that use Level
ch.qos.logback.classic Contains logback classic main classes. 
ch.qos.logback.classic.spi Contains core classes of logback classic. 
ch.qos.logback.classic.turbo   
 

Uses of Level in ch.qos.logback.classic
 

Fields in ch.qos.logback.classic declared as Level
static Level Level.ALL
          The ALL is used to turn on all logging.
static Level Level.DEBUG
          The DEBUG level designates informational events of lower importance.
static Level Level.ERROR
          The ERROR level designates error events which may or not be fatal to the application.
static Level Level.INFO
          The INFO level designates informational messages highlighting overall progress of the application.
static Level Level.OFF
          The OFF is used to turn off logging.
static Level Level.TRACE
          The TRACE level designates informational events of very low importance.
static Level Level.WARN
          The WARN level designates potentially harmful situations.
 

Methods in ch.qos.logback.classic that return Level
 Level Logger.getEffectiveLevel()
           
 Level Logger.getLevel()
           
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 ch.qos.logback.classic with parameters of type Level
 void Logger.filterAndLog(String localFQCN, Marker marker, Level level, String msg, Object[] params, Throwable t)
           
 void Logger.filterAndLog(String localFQCN, Marker marker, Level level, String msg, Object param1, Object param2, Throwable t)
           
 void Logger.filterAndLog(String localFQCN, Marker marker, Level level, String msg, Object param, Throwable t)
          The next methods are not merged into one because of the time we gain by not creating a new Object[] with the params.
 FilterReply LoggerContext.getTurboFilterChainDecision(Marker marker, Logger logger, Level level, String format, Object[] params, Throwable t)
           
 FilterReply LoggerContext.getTurboFilterChainDecision(Marker marker, Logger logger, Level level, String format, Object param1, Object param2, Throwable t)
           
 FilterReply LoggerContext.getTurboFilterChainDecision(Marker marker, Logger logger, Level level, String format, Object param, Throwable t)
           
 boolean Logger.isEnabledFor(Level level)
           
 boolean Logger.isEnabledFor(Marker marker, Level level)
           
 boolean Level.isGreaterOrEqual(Level r)
          Returns true if this Level has a higher or equal Level than the Level passed as argument, false otherwise.
 void Logger.setLevel(Level newLevel)
           
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 ch.qos.logback.classic.spi
 

Methods in ch.qos.logback.classic.spi that return Level
 Level LoggingEvent.getLevel()
           
 

Methods in ch.qos.logback.classic.spi with parameters of type Level
 FilterReply TurboFilterAttachableImpl.getTurboFilterChainDecision(Marker marker, Logger logger, Level level, String format, Object[] params, Throwable t)
          Loop through the filters in the chain.
 FilterReply TurboFilterAttachable.getTurboFilterChainDecision(Marker marker, Logger logger, Level level, String format, Object[] params, Throwable t)
          Loop through the filters in the chain.
 void LoggingEvent.setLevel(Level level)
           
 

Constructors in ch.qos.logback.classic.spi with parameters of type Level
LoggingEvent(String fqcn, Logger logger, Level level, String message, Throwable throwable, Object[] argArray)
           
 

Uses of Level in ch.qos.logback.classic.turbo
 

Methods in ch.qos.logback.classic.turbo with parameters of type Level
 FilterReply MarkerFilter.decide(Marker marker, Logger logger, Level level, String format, Object[] params, Throwable t)
           
 FilterReply MDCFilter.decide(Marker marker, Logger logger, Level level, String format, Object[] params, Throwable t)
           
abstract  FilterReply TurboFilter.decide(Marker marker, Logger logger, Level level, String format, Object[] params, Throwable t)
          Make a decision based on the multiple parameters passed as arguments.
 


Logback API
Version 0.9.8

Copyright © 2005-2008 QOS.ch. All Rights Reserved.