I am using Log4j as a logging framework. I am using MDC to hold some values across application so that when finally do log and get those inside eventhelpers. But in case of error/Exception logs on server I noticed that other session values are getting mix up.

Like DeptId what need to be logged is not there whereas other is logged.

Is MDC not thread-safe? any solution to this?

example

MDC.put("prsn_id","123456");
MDC.put("dept_id","comp_sc_12");
link|improve this question

56% accept rate
1  
MDCs, like NDCs, are ThreadLocal. – Dave Newton Nov 20 '11 at 5:39
what that means, are they thread-safe? – Nits Nov 20 '11 at 5:49
Should be, yes. – Dave Newton Nov 20 '11 at 6:06
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.