I would like to use slf4j+logback for two purposes in my application - log and audit.
For logging, I log the normal way:
static final Logger logger = L
I ran into the same problem, but I think the correct solution is different from what's proposed here through additivity
. The attached diagram tries to visualize the two approaches that do not result in duplicate logs:
For every
you also add an
and disable additivity. This is what's shown in the diagram under "Without additivity". The result is that each individual logger passes the logs directly to the appender and does not pass them to the ROOT
logger.
You specify the
s and their log levels, but omit appender-refs
for all but the ROOT
logger, and leave additivty on. This is shown under "With addivity". The result is that a matching log from the com.foo
logger is passed to the ROOT logger and uses the
specified there. Note that, at that point, the log level filtering of the ROOT
logger does not apply anymore. This means that even though com.foo
is of log level INFO
and the ROOT
logger specifies ERROR
, the log is still shown because it was already matched by com.foo
.