vote up 3 vote down star

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?

flag

57% accept rate

2 Answers

vote up 4 vote down check

You can use appender-ref in the logger configuration:

<logger name="foo.bar">
    <level value="debug"/>
    <appender-ref ref="FILE1" />
</logger>

Have a look here for full examples.

link|flag
vote up 0 vote down

I suggest also to set additivty to "false" when you have overlapping hierarchies and don't want duplicate log messages.

i.e:

<logger name="foo.bar">
    <level value="debug"/>
    <appender-ref ref="FILE1" />
</logger>
<logger name="foo.bar.xyz" additivity="false">
    <level value="debug"/>
    <appender-ref ref="FILE2" />
</logger>

This way messages directed to FILE2 won't be written to FILE1

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.