Fields Summary |
---|
public static final String | LOG_RECORD_NOTIFICATION_PREFIXNotification type prefix for a LogRecord Notification |
public static final String | LOG_RECORD_SEVERE_NOTIFICATION_TYPENotification type for a SEVERE LogRecord |
public static final String | LOG_RECORD_WARNING_NOTIFICATION_TYPENotification type for a WARNING LogRecord |
public static final String | LOG_RECORD_INFO_NOTIFICATION_TYPENotification type for an INFO LogRecord |
public static final String | LOG_RECORD_CONFIG_NOTIFICATION_TYPENotification type for a CONFIG LogRecord |
public static final String | LOG_RECORD_FINE_NOTIFICATION_TYPENotification type for a FINE LogRecord |
public static final String | LOG_RECORD_FINER_NOTIFICATION_TYPENotification type for a FINER LogRecord |
public static final String | LOG_RECORD_FINEST_NOTIFICATION_TYPENotification type for a FINEST LogRecord |
public static final String | LOG_RECORD_OTHER_NOTIFICATION_TYPENotification type for any other level eg a specific level number not equivalent to any of the standard ones |
public static final Set | ALL_LOG_RECORD_NOTIFICATION_TYPES |
public static final String | LOG_RECORD_KEY_PREFIXAll keys within the Map found in Notification.getUserData() have this prefix. |
public static final String | LOG_RECORD_AS_STRING_KEYKey to access the string representation of the {@link java.util.logging.LogRecord}.
This value will always be present and non-null.
Use {@link com.sun.appserv.management.base.Util#getAMXNotificationValue}(LOG_RECORD_STRING_KEY)
to obtain this value. |
public static final String | LOG_RECORD_LEVEL_KEYvalue: Level |
public static final String | LOG_RECORD_LOGGER_NAME_KEYvalue: String |
public static final String | LOG_RECORD_MESSAGE_KEYvalue: String |
public static final String | LOG_RECORD_MILLIS_KEYvalue: Long |
public static final String | LOG_RECORD_SEQUENCE_NUMBER_KEYvalue: Long |
public static final String | LOG_RECORD_SOURCE_CLASS_NAME_KEYvalue: String |
public static final String | LOG_RECORD_SOURCE_METHOD_NAME_KEYvalue: String |
public static final String | LOG_RECORD_THREAD_ID_KEYvalue: Integer |
public static final String | LOG_RECORD_THROWN_KEYvalue: Throwable
All Throwables are remapped to standard java exceptions; the value will
be a Throwable, but it may not be the original Throwable as thrown on the server side.
If nothing was thrown this key will not be found in the Map. |
public static final String | LOG_RECORD_ROOT_CAUSE_KEYvalue: Throwable
If LogRecord.getThrown() was non-null, this value is the innermost Throwable eg the root cause
found by following Throwable.getCause() until the innermost Throwable is reached.
If the root cause is the same as the thrown exception, then this value will not exist. |