final ContextMap context = new ContextMap();
context.set("UserName", userName);
context.set("RemoteIP", remoteIP);
context.set("SessionId", sessionId);
context.set("time", getDateFormat().format(new Date()));
context.makeReadOnly();
// bind new ContextMap to current thread and subthreads
ContextMap.bind(context);
}
}