I would like to ask about log4j
How to generate multiple log4j file for each class executed?
So I have 4 classes on my project and right now I set my log4j using log4j.properties utilizing FileAppender so that it only generates one log for all classes.
I would like to have log files per class. If I had 4 classes (A,B,C,D), I'd like to have A.log, B.log, C.log, and D.log containing information regarding log activity of each class.
Thank you very much.