This is an automated email from the ASF dual-hosted git repository. schofielaj pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push: new 753d6859216 MINOR: Fix wrong link and extension name (#18545) 753d6859216 is described below commit 753d6859216e238ecfa7cd5849eaf582150eb1f3 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 fae353be987..efcddbcd359 100644 --- a/README.md +++ b/README.md @@ -63,9 +63,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