You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2012/12/17 16:18:54 UTC

svn commit: r1422976 - /logging/log4j/log4j2/trunk/src/site/xdoc/manual/extending.xml

Author: ggregory
Date: Mon Dec 17 15:18:54 2012
New Revision: 1422976

URL: http://svn.apache.org/viewvc?rev=1422976&view=rev
Log:
Match code example to real class name.

Modified:
    logging/log4j/log4j2/trunk/src/site/xdoc/manual/extending.xml

Modified: logging/log4j/log4j2/trunk/src/site/xdoc/manual/extending.xml
URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/src/site/xdoc/manual/extending.xml?rev=1422976&r1=1422975&r2=1422976&view=diff
==============================================================================
--- logging/log4j/log4j2/trunk/src/site/xdoc/manual/extending.xml (original)
+++ logging/log4j/log4j2/trunk/src/site/xdoc/manual/extending.xml Mon Dec 17 15:18:54 2012
@@ -212,7 +212,7 @@ public class SystemPropertiesLookup impl
             </p>
             <pre class="prettyprint linenums">
 @Plugin(name = "ThresholdFilter", type = "Core", elementType = "filter", printObject = true)
-public final class ThresholdFilter extends FilterBase {
+public final class ThresholdFilter extends AbstractFilter {
 
     private final Level level;