com.ibm.websphere.logging

Class WsLevel

  1. java.lang.Object
  2. extended byjava.util.logging.Level
  3. extended bycom.ibm.websphere.logging.WsLevel
All implemented interfaces:
java.io.Serializable

  1. public class WsLevel
  2. extends java.util.logging.Level
The WsLevel class extends the java.util.logging.Level class, which defines a set of standard logging levels that can be used to control logging output. We extend that class to add WebSphere-specific levels, since the base set of levels are inadequate.

The added levels include

See Also:
Serialized Form

Field Summary

Modifier and Type Field and Description
  1. static
  2. java.util.logging.Level
AUDIT
AUDIT is in between INFO and WARNING
  1. static
  2. java.util.logging.Level
DETAIL
DETAIL is after CONFIG.
  1. static
  2. java.util.logging.Level
ERROR
ERROR is the same as SEVERE.
  1. static
  2. java.util.logging.Level
EVENT
EVENT is the same as FINE
  1. static
  2. java.util.logging.Level
FATAL
FATAL is higher than SEVERE.
Fields inherited from class java.util.logging.Level
ALL, CONFIG, FINE, FINER, FINEST, INFO, OFF, SEVERE, WARNING

Method Summary

Methods inherited from class java.util.logging.Level
equals, getLocalizedName, getName, getResourceBundleName, hashCode, intValue, parse, toString
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

Field Detail

FATAL

  1. public static final java.util.logging.Level FATAL
FATAL is higher than SEVERE.

ERROR

  1. public static final java.util.logging.Level ERROR
ERROR is the same as SEVERE.

AUDIT

  1. public static final java.util.logging.Level AUDIT
AUDIT is in between INFO and WARNING

EVENT

  1. public static final java.util.logging.Level EVENT
EVENT is the same as FINE

DETAIL

  1. public static final java.util.logging.Level DETAIL
DETAIL is after CONFIG.