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 2013/08/14 22:26:37 UTC

svn commit: r1514028 - /logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/appender/AsyncAppender.java

Author: ggregory
Date: Wed Aug 14 20:26:37 2013
New Revision: 1514028

URL: http://svn.apache.org/r1514028
Log:
[LOG4J2-353] Use consistent conventions in configuration files: @PluginElement call sites now follow the CamelCase convention.

Modified:
    logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/appender/AsyncAppender.java

Modified: logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/appender/AsyncAppender.java
URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/appender/AsyncAppender.java?rev=1514028&r1=1514027&r2=1514028&view=diff
==============================================================================
--- logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/appender/AsyncAppender.java (original)
+++ logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/appender/AsyncAppender.java Wed Aug 14 20:26:37 2013
@@ -175,7 +175,7 @@ public final class AsyncAppender<T exten
                 @PluginAttr("bufferSize") final String size,
                 @PluginAttr("name") final String name,
                 @PluginAttr("includeLocation") final String includeLocation,
-                @PluginElement("filter") final Filter filter,
+                @PluginElement("Filter") final Filter filter,
                 @PluginConfiguration final Configuration config,
                 @PluginAttr("ignoreExceptions") final String ignore) {
         if (name == null) {