262728293031323334
private static ThreadLocal<LoggingContext> currentContext = new ThreadLocal<LoggingContext>(); @Override public LoggingContext establish() { LoggingContext lc = new LoggingContextImpl(); currentContext.set(lc); return lc; }