diff --git a/src/changelog/2.23.0/.release-notes.adoc.ftl b/src/changelog/2.23.0/.release-notes.adoc.ftl index 4436587e5e4..ab55dea220d 100644 --- a/src/changelog/2.23.0/.release-notes.adoc.ftl +++ b/src/changelog/2.23.0/.release-notes.adoc.ftl @@ -20,8 +20,16 @@ <#if release.date?has_content>Release date:: ${release.date} -This release adds support for LMAX Disruptor 4.x and several performance and bug fixes. +This release adds support for LMAX Disruptor 4.x, revamps `StatusLogger`, and incorporates several performance and bug fixes. In order to maintain compatibility with JRE 8, support for LMAX Disruptor 3.x is maintained. +[#release-notes-2-23-0-StatusLogger] +=== `StatusLogger` improvements + +`StatusLogger` is a standalone, self-sufficient `Logger` implementation to record events that occur in the logging system (i.e., Log4j) itself. +It is the logging system used by Log4j for reporting status of its internals. +This release improves `StatusLogger` to make it self-contained and testable. +During this simplification, the message factory for `log4j-to-slf4j` and `log4j-to-jul` is fixed to `ParameterizedMessageFactory`. + <#include "../.changelog.adoc.ftl"> diff --git a/src/changelog/2.23.0/revamp_StatusLogger.xml b/src/changelog/2.23.0/revamp_StatusLogger.xml new file mode 100644 index 00000000000..87e0bcda69f --- /dev/null +++ b/src/changelog/2.23.0/revamp_StatusLogger.xml @@ -0,0 +1,8 @@ + + + + Make `StatusLogger` self-contained and testable +