Merge branch '2.7.x' into 3.0.x

Closes gh-36858
This commit is contained in:
Andy Wilkinson 2023-08-09 12:27:27 +01:00
commit b411fffb30

View File

@ -56,6 +56,30 @@ import org.junit.jupiter.api.extension.ParameterResolver;
* }
*
* }
* </pre>
* <p>
* To ensure that their output can be captured, Java Util Logging (JUL) and Log4j2 require
* additional configuration.
* <p>
* To reliably capture output from Java Util Logging, reset its configuration after each
* test:
*
* <pre class="code">
* &#064;AfterEach
* void reset() throws Exception {
* LogManager.getLogManager().readConfiguration();
* }
* </pre>
* <p>
* To reliably capture output from Log4j2, set the <code>follow</code> attribute of the
* console appender to <code>true</code>:
*
* <pre class="code">
* &lt;Appenders&gt;
* &lt;Console name="Console" target="SYSTEM_OUT" follow="true"&gt;
* ...
* &lt;/Console&gt;
* &lt;/Appenders&gt;
* </pre>
*
* @author Madhura Bhave