Uses of Interface
org.objectweb.util.monolog.api.Level

Packages that use Level
org.objectweb.util.monolog.api   
org.objectweb.util.monolog.component   
org.objectweb.util.monolog.file.monolog   
org.objectweb.util.monolog.wrapper.common   
org.objectweb.util.monolog.wrapper.config   
org.objectweb.util.monolog.wrapper.javaLog   
org.objectweb.util.monolog.wrapper.log4j   
org.objectweb.util.monolog.wrapper.log4jMini   
org.objectweb.util.monolog.wrapper.printwriter   
 

Uses of Level in org.objectweb.util.monolog.api
 

Fields in org.objectweb.util.monolog.api declared as Level
static Level BasicLevel.LEVEL_FATAL
          In general, FATAL messages should describe events that are of considerable importance and which will prevent continuation of the program execution.
static Level BasicLevel.LEVEL_ERROR
          The ERROR level designates error events that might still allow the application to continue running.
static Level BasicLevel.LEVEL_WARN
          In general, WARN messages should describe events that will be of interest to end users or system managers, or which indicate potential problems.
static Level BasicLevel.LEVEL_INFO
          The INFO level designates informational messages that highlight the progress of the application at a coarse-grained level.
static Level BasicLevel.LEVEL_DEBUG
          DEBUG messages might include things like minor (recoverable) failures.
static Level BasicLevel.LEVEL_INHERIT
          This special level indicates that the level is inherited from its ancestors.
 

Methods in org.objectweb.util.monolog.api that return Level
 Level Logger.getCurrentLevel()
          Returns the current level value under the Level format
 Level LevelFactory.defineLevel(java.lang.String name, int value)
          It defines a new Level with a name and an integer value.
 Level LevelFactory.defineLevel(java.lang.String name, java.lang.String value)
          It defines a new Level with a name and a string value.
 Level LevelFactory.getLevel(java.lang.String name)
          It retrieves a Level instance which the name is equals to the parameter.
 Level LevelFactory.getLevel(int value)
          It retrieves a Level instance which the integer value is equals to the parameter.
 Level[] LevelFactory.getLevels()
          It retrieves all Level instances defined in this manager.
 

Methods in org.objectweb.util.monolog.api with parameters of type Level
 void Logger.setLevel(Level l)
          Permits to set the level with a Level instance.
 boolean Logger.isLoggable(Level l)
          Check if a message of the given level would actually be logged by this logger.
 void Logger.log(Level level, java.lang.Object message)
          Log a message, with no arguments.
 void Logger.log(Level level, java.lang.Object message, java.lang.Throwable throwable)
          Log a message, with a throwable arguments which can represent an error or a context..
 void Logger.log(Level l, java.lang.Object message, java.lang.Object location, java.lang.Object method)
          Log a message, with a location and method arguments.
 void Logger.log(Level level, java.lang.Object message, java.lang.Throwable throwable, java.lang.Object location, java.lang.Object method)
          Log a message, with a location, method and throwable arguments.
 boolean Level.isComparableWith(Level o)
          This method returns true is the current level and the Level parameter are ordered.
 int Level.compareTo(Level o)
          Compares this object with the specified object for order.
 

Uses of Level in org.objectweb.util.monolog.component
 

Methods in org.objectweb.util.monolog.component that return Level
 Level MonologComponent.defineLevel(java.lang.String name, int value)
           
 Level MonologComponent.defineLevel(java.lang.String name, java.lang.String value)
           
 Level MonologComponent.getLevel(java.lang.String name)
           
 Level MonologComponent.getLevel(int value)
           
 Level[] MonologComponent.getLevels()
           
 

Uses of Level in org.objectweb.util.monolog.file.monolog
 

Methods in org.objectweb.util.monolog.file.monolog that return Level
protected  Level PropertiesConfAccess.parseLevelProp(java.util.Properties prop, java.lang.String key, LevelFactory lef)
          It parses a property entry to build or configure a Level instance.
protected  Level PropertiesConfAccess.parseLevelProp(java.util.Properties prop, java.lang.String key, LevelFactory lef, java.util.Vector currentLevelParse)
          It parses a property entry to build or configure a Level instance.
 

Methods in org.objectweb.util.monolog.file.monolog with parameters of type Level
protected  boolean PropertiesConfAccess.isDefaultLevel(Level l)
          It checks if the level parameter is a default monolog level.
 

Uses of Level in org.objectweb.util.monolog.wrapper.common
 

Classes in org.objectweb.util.monolog.wrapper.common that implement Level
 class LevelImpl
          This class is the basic implementation of the Level interface.
 

Methods in org.objectweb.util.monolog.wrapper.common that return Level
 Level AbstractFactory.defineLevel(java.lang.String name, int value)
           
 Level AbstractFactory.defineLevel(java.lang.String name, java.lang.String value)
           
 Level AbstractFactory.getLevel(java.lang.String name)
           
 Level AbstractFactory.getLevel(int value)
           
 Level[] AbstractFactory.getLevels()
           
 

Methods in org.objectweb.util.monolog.wrapper.common with parameters of type Level
 boolean LevelImpl.isComparableWith(Level o)
           
 int LevelImpl.compareTo(Level o)
           
 

Uses of Level in org.objectweb.util.monolog.wrapper.config
 

Fields in org.objectweb.util.monolog.wrapper.config declared as Level
protected  Level BasicLogger.level
          The current level of the logger.
 

Methods in org.objectweb.util.monolog.wrapper.config that return Level
 Level BasicLogger.getCurrentLevel()
           
 Level BasicFactory.defineLevel(java.lang.String name, int value)
           
 Level BasicFactory.defineLevel(java.lang.String name, java.lang.String value)
           
 Level BasicFactory.getLevel(java.lang.String name)
           
 Level BasicFactory.getLevel(int value)
           
 Level[] BasicFactory.getLevels()
           
 

Methods in org.objectweb.util.monolog.wrapper.config with parameters of type Level
 void BasicLogger.setLevel(Level l)
           
 boolean BasicLogger.isLoggable(Level l)
           
 void BasicLogger.log(Level level, java.lang.Object message)
           
 void BasicLogger.log(Level level, java.lang.Object message, java.lang.Throwable throwable)
           
 void BasicLogger.log(Level l, java.lang.Object message, java.lang.Object location, java.lang.Object method)
           
 void BasicLogger.log(Level level, java.lang.Object message, java.lang.Throwable throwable, java.lang.Object location, java.lang.Object method)
           
 

Uses of Level in org.objectweb.util.monolog.wrapper.javaLog
 

Methods in org.objectweb.util.monolog.wrapper.javaLog that return Level
 Level Logger.getCurrentLevel()
           
static Level LevelImpl.getLevel(int value)
          int => org.objectweb.util.monolog.api.Level
 

Methods in org.objectweb.util.monolog.wrapper.javaLog with parameters of type Level
 void Logger.setLevel(Level l)
           
 boolean Logger.isLoggable(Level l)
           
 void Logger.log(Level l, java.lang.Object o)
           
 void Logger.log(Level l, java.lang.Object o, java.lang.Throwable t)
           
 void Logger.log(Level l, java.lang.Object o, java.lang.Object location, java.lang.Object method)
           
 void Logger.log(Level l, java.lang.Object o, java.lang.Throwable t, java.lang.Object location, java.lang.Object method)
           
static java.util.logging.Level LevelImpl.convertLevel(Level l)
          Level => java.util.logging.Level
 

Uses of Level in org.objectweb.util.monolog.wrapper.log4j
 

Methods in org.objectweb.util.monolog.wrapper.log4j that return Level
 Level MonologCategory.getCurrentLevel()
           
static Level LevelImpl.getLevel(int value)
           
 

Methods in org.objectweb.util.monolog.wrapper.log4j with parameters of type Level
 boolean MonologCategory.isLoggable(Level l)
           
 void MonologCategory.log(Level l, java.lang.Object o)
           
 void MonologCategory.log(Level l, java.lang.Object o, java.lang.Throwable t)
           
 void MonologCategory.log(Level l, java.lang.Object o, java.lang.Object location, java.lang.Object method)
           
 void MonologCategory.log(Level l, java.lang.Object o, java.lang.Throwable t, java.lang.Object location, java.lang.Object method)
           
 void MonologCategory.setLevel(Level l)
           
static org.apache.log4j.Priority LevelImpl.convertLevel(Level l)
           
 

Uses of Level in org.objectweb.util.monolog.wrapper.log4jMini
 

Methods in org.objectweb.util.monolog.wrapper.log4jMini that return Level
 Level MonologLoggerFactory.defineLevel(java.lang.String name, int value)
           
 Level MonologLoggerFactory.defineLevel(java.lang.String name, java.lang.String value)
           
 Level MonologLoggerFactory.getLevel(java.lang.String name)
           
 Level MonologLoggerFactory.getLevel(int value)
           
 Level[] MonologLoggerFactory.getLevels()
           
 Level MonologCategory.getCurrentLevel()
           
static Level LevelImpl.getLevel(int value)
           
 

Methods in org.objectweb.util.monolog.wrapper.log4jMini with parameters of type Level
 void MonologCategory.setLevel(Level l)
           
 boolean MonologCategory.isLoggable(Level l)
           
 void MonologCategory.log(Level l, java.lang.Object o)
           
 void MonologCategory.log(Level l, java.lang.Object o, java.lang.Throwable t)
           
 void MonologCategory.log(Level l, java.lang.Object o, java.lang.Object location, java.lang.Object method)
           
 void MonologCategory.log(Level l, java.lang.Object o, java.lang.Throwable t, java.lang.Object location, java.lang.Object method)
           
static org.apache.log4j.Priority LevelImpl.convertLevel(Level l)
           
 

Uses of Level in org.objectweb.util.monolog.wrapper.printwriter
 

Methods in org.objectweb.util.monolog.wrapper.printwriter that return Level
 Level LoggerImpl.defineLevel(java.lang.String name, int value)
           
 Level LoggerImpl.defineLevel(java.lang.String name, java.lang.String value)
           
 Level LoggerImpl.getLevel(java.lang.String name)
           
 Level LoggerImpl.getLevel(int value)
          This method is not synchronized because the configuration is rarely
 Level[] LoggerImpl.getLevels()
          This method is not synchronized because the configuration is rarely
 Level LoggerImpl.getCurrentLevel()
          Gets the CurrentLevel attribute of the LoggerImpl object
 

Methods in org.objectweb.util.monolog.wrapper.printwriter with parameters of type Level
 void LoggerImpl.setLevel(Level l)
          Sets the Level attribute of the LoggerImpl object
 boolean LoggerImpl.isLoggable(Level l)
          Gets the Loggable attribute of the LoggerImpl object
 void LoggerImpl.log(Level l, java.lang.Object o)
          Log method
 void LoggerImpl.log(Level l, java.lang.Object o, java.lang.Throwable t)
          Log method
 void LoggerImpl.log(Level l, java.lang.Object o, java.lang.Object location, java.lang.Object method)
          Log method
 void LoggerImpl.log(Level l, java.lang.Object o, java.lang.Throwable t, java.lang.Object location, java.lang.Object method)
          Log method