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");
ThreadLocal. – Dave Newton Nov 20 '11 at 5:39