I am using the log4j and wanted to create different log files for different classes in the same package,I can perform this by using two xml files but I want to perform it by using a single xml file.
Please tell me the way to do this.
|
|
|
Make all classes which should log to the same file use the same logger, e.g. place the following Logger instantiation in each class:
In your
and let it log to a corresponding file appender:
Repeat this for each log file you want to write. |
|||
|
|