The java.util.logging
framework supports the following levels of logging, from the least verbose to the most verbose:
SEVERE
WARNING
INFO
CONFIG
FINE
FINER
FINEST
To configure the types of event that are logged across all loggers, configure the global logging level as shown in Example 7.7.
The java.util.logging
framework supports configuring logging at the level of an individual package. For example, the line of code
shown in Example 7.8 configures logging at a SEVERE
level on classes in the
com.xyz.foo package.