This is an automated email from the ASF dual-hosted git repository. schofielaj pushed a commit to branch 4.0 in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/4.0 by this push: new 6bf537952b1 MINOR: Fix wrong link and extension name (#18545) 6bf537952b1 is described below commit 6bf537952b14d8b69950e0c9d42ab1229c4225b6 Author: TengYao Chi <kiting...@gmail.com> AuthorDate: Wed Jan 15 17:03:11 2025 +0800 MINOR: Fix wrong link and extension name (#18545) Reviewers: Andrew Schofield <aschofi...@confluent.io> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aa615d70fd1..40e508a4478 100644 --- a/README.md +++ b/README.md @@ -54,9 +54,9 @@ Follow instructions in https://kafka.apache.org/quickstart ./gradlew clients:test --tests org.apache.kafka.clients.MetadataTest.testTimeToNextUpdate ### Running a particular unit/integration test with log4j output ### -By default, there will be only small number of logs output while testing. You can adjust it by changing the `log4j2.yml` file in the module's `src/test/resources` directory. +By default, there will be only small number of logs output while testing. You can adjust it by changing the `log4j2.yaml` file in the module's `src/test/resources` directory. -For example, if you want to see more logs for clients project tests, you can modify [the line](https://github.com/apache/kafka/blob/trunk/clients/src/test/resources/log4j2.yml#L35) in `clients/src/test/resources/log4j2.yml` +For example, if you want to see more logs for clients project tests, you can modify [the line](https://github.com/apache/kafka/blob/trunk/clients/src/test/resources/log4j2.yaml#L35) in `clients/src/test/resources/log4j2.yaml` to `level: INFO` and then run: ./gradlew cleanTest clients:test --tests NetworkClientTest