You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In LoggerConfig.Builder, an original typo existed in the 'withtFilter' method (extra 't' in name).
This was fixed by deprecating the original method and adding the correct 'withFilter' method.
/** @deprecated Use {@link #withFilter(Filter)} instead */
@Deprecated
public B withtFilter(final Filter filter) { ... }
public B withFilter(final Filter filter) { ... }
However, it was not fixed in the nested LoggerConfig.RootLogger.Builder implementation - there the name is still incorrect.
The nested builder method should also be deprecated and 'withFilter' added to replace it with the correct name.
The text was updated successfully, but these errors were encountered:
JWT007
changed the title
LoggerConfig.RootLogger.Builder#withtFilter (typo in metthod name / only partially fixed)
LoggerConfig.RootLogger.Builder#withtFilter (typo in method name / only partially fixed)
Jan 7, 2025
Log4j 2.24
In LoggerConfig.Builder, an original typo existed in the '
withtFilter
' method (extra 't' in name).This was fixed by deprecating the original method and adding the correct 'withFilter' method.
However, it was not fixed in the nested
LoggerConfig.RootLogger.Builder
implementation - there the name is still incorrect.The nested builder method should also be deprecated and '
withFilter
' added to replace it with the correct name.The text was updated successfully, but these errors were encountered: