Example usage for Java java.util.logging Level fields, constructors, methods, implement or subclass
The text is from its open source code.
Level | OFF OFF is a special level that can be used to turn off logging. |
Level | SEVERE SEVERE is a message level indicating a serious failure. |
Level | WARNING WARNING is a message level indicating a potential problem. |
Level | INFO INFO is a message level for informational messages. |
Level | CONFIG CONFIG is a message level for static configuration messages. |
Level | FINE FINE is a message level providing tracing information. |
Level | FINER FINER indicates a fairly detailed tracing message. |
Level | FINEST FINEST indicates a highly detailed tracing message. |
Level | ALL ALL indicates that all messages should be logged. |
boolean | equals(Object ox) Compare two objects for value equality. |
String | getLocalizedName() Return the localized string name of the Level, for the current default locale. |
String | getName() Return the non-localized string name of the Level. |
int | intValue() Get the integer value for this level. |
Level | parse(String name) Parse a level name string into a Level. |
String | toString() Returns a string representation of this Level. |