Skip to content
Advertisement

how to log only one level with log4j2?

I’m using log4j2 in my application.

What I want is everything up to ‘debug’ to go to console, everything up to ‘info’ to go to myapp.log, and ONLY ‘info’ to go to ‘myapp-audit.log’.

The reason is, INFO mostly consists of successful modifications to data (ex. ‘user created’, ‘user updated’, ‘user deleted’, and so on). If is effectively an audit log of data modifications.

But I can’t get figure out how to do it.

How do I get ONLY ‘info’ to get logged to ‘myapp-audit.log’? Here’s my current configuration …

JavaScript

Advertisement

Answer

If you specify INFO in the appender-ref, the appender will receive INFO, WARN, ERROR and FATAL events. You can further restrict to only INFO by filtering out WARN, ERROR and FATAL level events:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement