ppkarwasz commented on code in PR #3372:
URL: https://github.com/apache/logging-log4j2/pull/3372#discussion_r1959377828


##########
log4j-core/src/main/java/org/apache/logging/log4j/core/config/LoggerConfig.java:
##########
@@ -945,11 +944,20 @@ public Filter getFilter() {
                 return filter;
             }
 
+            /**
+             * @deprecated Use {@link #withFilter(Filter)} instead
+             */
+            @Deprecated
             public B withtFilter(final Filter filter) {
                 this.filter = filter;
                 return asBuilder();
             }
 
+            public B withFilter(final Filter filter) {

Review Comment:
   > Should I add only the one setter or all?
   
   As you prefer, you can replace all "withers" in `LoggerConfig.Builder` with 
"setters".



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@logging.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to