Java Logging Api has 7 levels. The levels in descending order are:
SEVERE (highest value)
WARNING
INFO
CONFIG
FINE
FINER
FINEST (lowest value)
The default level is INFO (but this depends on the system and used a virtual machine).
Note:
There are also levels OFF (can be used to turn log...