It seems to me that what I am trying to achieve is very common but I don't get it to work:
I have one appender for the root logger that just logs anything that bubbles up to the root. And I have another appender attached to a more specific logger. The specific logger has level INFO but I'd like only ERROR messages to bubble up to the root. What is the best way to achieve this?
The root logger may log INFO messages passed from other specific loggers but for this particular logger I don't want any INFO messages to be passed up the hierarchy.