As was just brought out on the Users list, the thread name is part of the
LoggingEvent, but the current implementation is:
  public String getThreadName() {
    if(threadName == null)
      threadName = (Thread.currentThread()).getName();
    return threadName;
  }
so if it's not asked for that information until it's in an AsyncAppender (or
having been serialized to a server) then it will give the wrong name.

Any reason for threadName to not get set at LoggingEvent creation?

-Jim Moore

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to