ceki 01/08/06 23:31:33 Modified: docs critique.html src/java/org/apache/log4j MDC.java Log: Revision Changes Path 1.21 +1 -1 jakarta-log4j/docs/critique.html Index: critique.html =================================================================== RCS file: /home/cvs/jakarta-log4j/docs/critique.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- critique.html 2001/08/06 14:53:06 1.20 +++ critique.html 2001/08/07 06:31:33 1.21 @@ -330,7 +330,7 @@ <li><p><a href="pub-support/EllisTeer.html">Ellis Teer</a> <li><p><a href="pub-support/GuyLichtman.html">Guy Lichtman</a> <!-- --> <li><p><a href="pub-support/MichaelMoser.html">Michael Moser</a> <!-- --> -<li><p><a href="pub-support/HenrikLundahl.html">Henrik Lundahl</a> +<li><p><a href="pub-support/HenrikLundahl.html">Henrik Lundahl</a> <!-- --> <li><p><a href="pub-support/ThomasFenner.html">Thomas Fenner</a> <!-- --> <li><p><a href="pub-support/EndreStolsvik.html">Endre Stølsvik</a> <!-- --> <li><p><a href="pub-support/KnutErikBallestad.html">Knut Erik Ballestad</a> 1.5 +3 -2 jakarta-log4j/src/java/org/apache/log4j/MDC.java Index: MDC.java =================================================================== RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/MDC.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- MDC.java 2001/08/06 22:00:31 1.4 +++ MDC.java 2001/08/07 06:31:33 1.5 @@ -20,7 +20,7 @@ near-simultaneously. <p><b><em>The MDC is managed on a per thread basis</em></b>. A - child thread automatically inherits an <em>copy</em> of the mapped + child thread automatically inherits a <em>copy</em> of the mapped diagnostic context of its parent which is managed independently of the parent's context. @@ -31,7 +31,8 @@ @author Ceki Gülcü */ public class MDC { - + + final static ThreadLocalMap context = new ThreadLocalMap(); static final int HT_SIZE = 7; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]