Frames | No Frames |
Fields of type org.objectweb.util.monolog.api.Level | |
Level | DEBUG messages might include things like minor (recoverable) failures. |
Level | The ERROR level designates error events that might still allow the
application to continue running. |
Level | In general, FATAL messages should describe events that are of
considerable importance and which will prevent continuation of the
program execution. |
Level | The INFO level designates informational messages that highlight the
progress of the application at a coarse-grained level. |
Level | This special level indicates that the level is inherited from its
ancestors. |
Level | In general, WARN messages should describe events that will be of
interest to end users or system managers, or which indicate potential
problems. |
Methods with parameter type org.objectweb.util.monolog.api.Level | |
int | Compares this object with the specified object for order. |
boolean | This method returns true is the current level and the Level parameter are
ordered. |
boolean | Check if a message of the given level would actually be logged by this logger. |
void | Log a message, with no arguments. |
void | Log a message, with a location and method arguments. |
void | Log a message, with a throwable arguments which can represent an
error or a context.. |
void | Log a message, with a location, method and throwable arguments. |
void | Permits to set the level with a Level instance. |
Methods with return type org.objectweb.util.monolog.api.Level | |
Level | LevelFactory.defineLevel(String name, String value) It defines a new Level with a name and a string value. |
Level | LevelFactory.defineLevel(String name, int value) It defines a new Level with a name and an integer value. |
Level | Returns the current level value under the Level format
|
Level | LevelFactory.getLevel(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[] | It retrieves all Level instances defined in this manager. |