0
votes
Java logger that automatically determines caller’s class name
Unless you really need your Logger to be static, you could use
final Logger logger = LoggerFactory.getLogger(getClass());
…
1
vote
log4j log file names?
If the job names are known ahead of time, you could include the job name when you do the getLogger() call. You then can bind different appenders to different loggers, with separate file names (or …
1
vote
Log4j: Why is the root logger collecting all log types regardless the configuration?
Two things: Check additivity and decide whether you want log events captured by more detailed levels of logging to propagate to the root logger.
Secondly, check the level for the root logg …
