I am just starting to use logback and I have a question:
Should you create one logger for each class like the following:
final static Logger logger = LoggerFactory.getLogger(className.class);
Or is that too much? maybe create a logger one per package? what is the generally considered good practice? thanks.