I'm using log4j (via Pax logging in Apache Karaf) together with MDC. Using the sift appender I also direct logging to different log files based on an MDC value. What I haven't been able to figure out is how to set the log level based on an MDC value.
I can set the log level to TRACE for a specific logger as follows:
log4j.logger.com.foo=TRACE
But how can I set the log level to TRACE for a specific MDC value? Imagine that I have an MDC value with key=user and value=fred. I would then like to stay with log level INFO for the root logger but change the log level to TRACE whenever the user is fred.
Is there any way I can accomplish this? It would be nice with a syntax similar to:
log4j.mdc.user.fred=TRACE