I am using java.util.logging.Logger
and I want to enable all log levels. I thought the following would work:
logger.setLevel(Level.ALL);
But apparently it doesn't. Only INFO
level logging statements are taking effect, and others are being swallowed.
How do I enable all log levels?