| Log4j 1.2.8 | ||
| Frames | No Frames | ||
Classes derived from org.apache.log4j.Priority | |
| class | Defines the minimum set of levels recognized by the system, that is
OFF, FATAL, ERROR,
WARN, INFODEBUG and
ALL. |
Fields of type org.apache.log4j.Priority | |
| Priority | The DEBUG priority designates fine-grained
informational events that are most useful to debug an
application. |
| Priority | The ERROR level designates error events that
might still allow the application to continue running. |
| Priority | The FATAL level designates very severe error
events that will presumably lead the application to abort. |
| Priority | The INFO level designates informational messages
that highlight the progress of the application at coarse-grained
level. |
| Priority | The WARN level designates potentially harmful situations. |
| Priority | There is no level threshold filtering by default. |
Methods with parameter type org.apache.log4j.Priority | |
| void | This method creates a new logging event and logs the event
without further checks. |
| boolean | Check whether the message level is below the appender's
threshold. |
| boolean | Check whether this category is enabled for a given Level passed as parameter. |
| boolean | Returns true if this level has a higher or equal
level than the level passed as argument, false
otherwise. |
| void | Log a localized and parameterized message. |
| void | Log a localized message. |
| void | This is the most generic printing method. |
| void | This generic form is intended to be used by wrappers. |
| void | This generic form is intended to be used by wrappers. |
| void | Set the level of this Category. |
| void | Set the threshold level. |
| Priority | Convert the string passed as argument to a priority. |
| Priority | Convert an integer passed as argument to a priority. |
Methods with return type org.apache.log4j.Priority | |
| Priority[] | Return all possible priorities as an array of Level objects in
descending order. |
| Priority | |
| Priority | Returns this appenders threshold level. |
| Priority | Priority.toPriority(String sArg) Convert the string passed as argument to a priority. |
| Priority | Convert the string passed as argument to a priority. |
| Priority | Priority.toPriority(int val) Convert an integer passed as argument to a priority. |
| Priority | Convert an integer passed as argument to a priority. |
Constructors with parameter type org.apache.log4j.Priority | |
LoggingEvent.LoggingEvent(String fqnOfCategoryClass, Category logger, long timeStamp, Priority priority, Object message, Throwable throwable) Instantiate a LoggingEvent from the supplied parameters. | |
LoggingEvent.LoggingEvent(String fqnOfCategoryClass, Category logger, Priority priority, Object message, Throwable throwable) Instantiate a LoggingEvent from the supplied parameters. | |
Fields of type org.apache.log4j.Priority | |
| Priority | Level of logging event. |