Suppose I have these packages in my application - foo.bar and foo.foobar, And I want to send all log4j log messages that are coming from foo.bar package to foobar.log file and the log messages coming from foo.foobar to foofoobar.log file, how should I configure the log4j.xml file?
|
|
You can use appender-ref in the logger configuration:
Have a look here for full examples. |
||
|
|
|
|
I suggest also to set additivty to "false" when you have overlapping hierarchies and don't want duplicate log messages. i.e:
This way messages directed to FILE2 won't be written to FILE1 |
||
|
|
