I\'m using java.util.logging.Logger logging in my program. How do I enable FINE
logging for a single class, while setting it to WARNING
for every othe
If you do not want to have a logger defined for every single class in question but rather want to share loggers between classes, you can alternatively implement your own java.util.logging.Handler that has its own way of filtering for class names using the information provided by LogRecord.getSourceClassName().