Reputation: 1089
How do logging levels from java.util.logging map to SLF4J?
SLF4J
java.util.logging
Upvotes: 42
Views: 22425
Reputation: 11035
From the SLF4JBridgeHandler docs and testing (annotated with brackets):
[ALL -> TRACE]
FINEST -> TRACE
FINER -> DEBUG
FINE -> DEBUG
[CONFIG -> INFO]
INFO -> INFO
WARNING -> WARN
SEVERE -> ERROR
[OFF -> ERROR]
Upvotes: 84