fileAppender=ForeignTxns, root, foreignTxns.log, false, Info, EsPatternLayout, '%d %p [%c] %o', truefileAppender=ForeignTxns, root, foreignTxns.log, false, Info, EsPatternLayout, '%d %p [%c] %o', trueThe ForeignTxns appender would normally log the Warn-level 'Large Foreign txn' logging event because its level allows logging events of Info or higher to be written, and Warn is higher. But the levelMatchFilter attached to the ForeignTxns appender ignores the logging event because it filters out logging events with a level of Warn. So the Warn-level 'Large Foreign txn' logging event does not appear in foreignTxns.log.
|