ceki 02/04/25 15:22:07 Modified: docs FAQ.html manual.html src/java/org/apache/log4j AsyncAppender.java Logger.java src/java/org/apache/log4j/varia LevelMatchFilter.java Log: A bunch of buf fixes and small corrections. Revision Changes Path 1.13 +1 -1 jakarta-log4j/docs/FAQ.html Index: FAQ.html =================================================================== RCS file: /home/cvs/jakarta-log4j/docs/FAQ.html,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- FAQ.html 2 Sep 2001 21:58:27 -0000 1.12 +++ FAQ.html 25 Apr 2002 22:22:07 -0000 1.13 @@ -338,7 +338,7 @@ <p>The new Category class retains the flexibility of the former implementation and offers much much better performance. I would go as far as to claim that the performance cannot be improved upon without -loosing functionality. <em>Please do not hesitate to debunk this +losing functionality. <em>Please do not hesitate to debunk this assertion</em>. Contributions from <a href="mailto:[EMAIL PROTECTED]">Alex Blewitt</a>, F. Hoering and M. Oestreicher were instrumental to these performance improvements. 1.33 +1 -1 jakarta-log4j/docs/manual.html Index: manual.html =================================================================== RCS file: /home/cvs/jakarta-log4j/docs/manual.html,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- manual.html 17 Apr 2002 21:52:25 -0000 1.32 +++ manual.html 25 Apr 2002 22:22:07 -0000 1.33 @@ -163,7 +163,7 @@ <pre> package org.apache.log4j; - public <b>Logger</b> class { + public class <b>Logger</b> { // Creation & retrieval methods: public static Logger getRootLogger(); 1.28 +0 -1 jakarta-log4j/src/java/org/apache/log4j/AsyncAppender.java Index: AsyncAppender.java =================================================================== RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/AsyncAppender.java,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- AsyncAppender.java 24 Apr 2002 15:03:45 -0000 1.27 +++ AsyncAppender.java 25 Apr 2002 22:22:07 -0000 1.28 @@ -108,7 +108,6 @@ event.getNDC(); event.getThreadName(); // Get a copy of this thread's MDC. - event.getMDCCopy(); if(locationInfo) { event.getLocationInformation(); 1.16 +2 -0 jakarta-log4j/src/java/org/apache/log4j/Logger.java Index: Logger.java =================================================================== RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/Logger.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- Logger.java 24 Apr 2002 15:03:44 -0000 1.15 +++ Logger.java 25 Apr 2002 22:22:07 -0000 1.16 @@ -14,6 +14,8 @@ This is the central class in the log4j package. Most logging operations, except configuration, are done through this class. + @since log4j 1.2 + @author Ceki Gülcü */ public class Logger extends Category { 1.4 +0 -14 jakarta-log4j/src/java/org/apache/log4j/varia/LevelMatchFilter.java Index: LevelMatchFilter.java =================================================================== RCS file: /home/cvs/jakarta-log4j/src/java/org/apache/log4j/varia/LevelMatchFilter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- LevelMatchFilter.java 22 Feb 2002 18:36:28 -0000 1.3 +++ LevelMatchFilter.java 25 Apr 2002 22:22:07 -0000 1.4 @@ -33,20 +33,6 @@ public class LevelMatchFilter extends Filter { /** - @deprecated Options are now handled using the JavaBeans paradigm. - This constant is not longer needed and will be removed in the - <em>near</em> term. - */ - public static final String LEVEL_TO_MATCH_OPTION = "LevelToMatch"; - - /** - @deprecated Options are now handled using the JavaBeans paradigm. - This constant is not longer needed and will be removed in the - <em>near</em> term. - */ - public static final String ACCEPT_ON_MATCH_OPTION = "AcceptOnMatch"; - - /** Do we return ACCEPT when a match occurs. Default is <code>true</code>. */ boolean acceptOnMatch = true;
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>