|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Level | |
|---|---|
| org.objectweb.util.monolog.api | |
| org.objectweb.util.monolog.wrapper.remote.api | |
| Uses of Level in org.objectweb.util.monolog.api |
|---|
| Fields in org.objectweb.util.monolog.api declared as Level | |
|---|---|
static Level |
BasicLevel.LEVEL_DEBUG
DEBUG messages might include things like minor (recoverable) failures. |
static Level |
BasicLevel.LEVEL_ERROR
The ERROR level designates error events that might still allow the application to continue running. |
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_INFO
The INFO level designates informational messages that highlight the progress of the application at a coarse-grained level. |
static Level |
BasicLevel.LEVEL_INHERIT
This special level indicates that the level is inherited from its ancestors. |
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. |
| Methods in org.objectweb.util.monolog.api that return Level | |
|---|---|
Level |
LevelFactory.defineLevel(String name,
int value)
It defines a new Level with a name and an integer value. |
Level |
LevelFactory.defineLevel(String name,
String value)
It defines a new Level with a name and a string value. |
Level |
Logger.getCurrentLevel()
Returns the current level value under the Level format |
Level |
LevelFactory.getLevel(int value)
It retrieves a Level instance which the integer value is equals to the parameter. |
Level |
LevelFactory.getLevel(String name)
It retrieves a Level instance which the name 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 | |
|---|---|
int |
Level.compareTo(Level o)
Compares this object with the specified object for order. |
boolean |
Level.isComparableWith(Level o)
This method returns true is the current level and the Level parameter are ordered. |
boolean |
Logger.isLoggable(Level l)
Check if a message of the given level would actually be logged by this logger. |
void |
MonologFactoryListener.levelCreated(Level level)
It is called when a new level has been created by the monolog factory |
void |
MonologFactoryListener.levelRemoved(Level level)
It i called when a level has been removed by the monolog factory |
void |
Logger.log(Level level,
Object message)
Log a message, with no arguments. |
void |
Logger.log(Level l,
Object message,
Object location,
Object method)
Log a message, with a location and method arguments. |
void |
Logger.log(Level level,
Object message,
Throwable throwable)
Log a message, with a throwable arguments which can represent an error or a context.. |
void |
Logger.log(Level level,
Object message,
Throwable throwable,
Object location,
Object method)
Log a message, with a location, method and throwable arguments. |
void |
Logger.setLevel(Level l)
Permits to set the level with a Level instance. |
| Uses of Level in org.objectweb.util.monolog.wrapper.remote.api |
|---|
| Methods in org.objectweb.util.monolog.wrapper.remote.api that return Level | |
|---|---|
Level |
MonologFactoryProxy.getLevel(int value)
It retrieves a Level instance which the integer value is equals to the parameter. |
Level |
MonologFactoryMBean.getLevel(int value)
It retrieves a Level instance which the integer value is equals to the parameter. |
Level |
MonologFactoryProxy.getLevel(String name)
It retrieves a Level instance which the name is equals to the parameter. |
Level |
MonologFactoryMBean.getLevel(String name)
It retrieves a Level instance which the name is equals to the parameter. |
Level[] |
MonologFactoryProxy.getLevels()
It retrieves all Level instances defined in this manager. |
Level[] |
MonologFactoryMBean.getLevels()
It retrieves all Level instances defined in this manager. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||