Logback logger logging twice

后端 未结 3 493
忘掉有多难
忘掉有多难 2021-01-19 01:00

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         


        
3条回答
  •  终归单人心
    2021-01-19 01:39

    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:

    1. 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.

    2. 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.

提交回复
热议问题