pub enum Level {
ALL,
FINEST,
FINER,
FINE,
CONFIG,
INFO,
WARNING,
SEVERE,
OFF,
}Expand description
Log entry level setting.
Default level: INFO.
Variants§
ALL
ALL is a special level that can be used to turn on logging for all levels.
FINEST
FINEST indicates a highly detailed tracing message.
FINER
FINER indicates a fairly detailed tracing message.
Suggest logging calls for entering, returning,
or Errors, such as returned via Result, are traced at
this level.
FINE
FINE is a message level providing tracing information.
All of FINE, FINER, and FINEST are intended for relatively detailed tracing. The exact meaning of the three levels will vary between subsystems, but in general, FINEST should be used for the most voluminous detailed output, FINER for somewhat less detailed output, and FINE for the lowest volume (and most important) messages.
In general the FINE level should be used for information that will be broadly interesting to developers who do not have a specialized interest in the specific subsystem.
FINE messages might include things like minor (recoverable) failures. Issues indicating potential performance problems are also worth logging as FINE.
CONFIG
CONFIG is a message level for static configuration messages.
CONFIG messages are intended to provide a variety of static configuration information, to assist in debugging problems that may be associated with particular configurations.
For example, a CONFIG message might include the CPU type, the graphics depth, the GUI look-and-feel, etc.
INFO
INFO is a message level for informational messages.
Typically INFO messages will be written to the console or its equivalent. So the INFO level should only be used for reasonably significant messages that will make sense to end users and system administrators.
[default level]
WARNING
WARNING is a message level indicating a potential problem.
In general WARNING messages should describe events that will be of interest to end users or system managers, or which indicate potential problems.
SEVERE
SEVERE is a message level indicating a serious failure.
In general SEVERE messages should describe events that are of considerable importance and which will prevent normal program execution. They should be reasonably intelligible to end users and to system administrators.
OFF
OFF is a special level that can be used to turn off logging.