Hi,<div><br></div><div>AFAIK, Log4J&#39;s MDC had no inheritance between threads -- this is a new feature introduced in Logback. However, when you are using thread pools, this new feature can cause a lot of trouble, especially when moving to Logback from a different logging system.</div>
<div><br></div><div>Consider the following situation: you have a web application where you use the MDC to keep track of which user is logged in. You do certain things on the request processing thread. There are other certain things that you want to execute &quot;in the background&quot;. You want to print the originating user&#39;s name in the logs for both &quot;foreground&quot; and &quot;background&quot; tasks.</div>
<div><br></div><div>In such a case the Runnable&#39;s you place on the thread pool&#39;s queue need to take care of retaining the MDC from the originating thread. If you do this, and do this in every instance, no problem. However, it happens that you forget to do this. In such a case, with Log4J&#39;s non-inherited MDC, you would get no user name printed in the logs for background tasks, because your thread pool threads would not have anything in the MDC. That&#39;s not a good situation, but at least you can spot that there&#39;s something missing.</div>
<div><br></div><div>OTOH, if you forget to retain the MDC manually with Logback, instead of no data you get false data in the logs. This is because thread pool threads are going to be created with random parent threads. These thread pool threads will then inherit the MDC from these threads, and *keep* the MDC. So future Runnables passed to these threads will print their starting thread&#39;s username.</div>
<div><br></div><div>False data is worse than no data, so it would be nice to avoid this. Is there a way to make Logback&#39;s MDC inheritance configuratble? Like, in logback.xml you could set if you wanted to use InheritableThreadLocals or not. If that doesn&#39;t work, it might even be better to have no inheritance at all.</div>
<div><br></div><div>What do you think?</div><div><br></div><div>Regards,</div><div>Lorant</div>