This is an automated email from the ASF dual-hosted git repository. mapohl pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
commit 0d3be65c06b7e8afa90e00628bc1c325953c597f Author: Matthias Pohl <[email protected]> AuthorDate: Mon Sep 16 12:45:32 2024 +0200 [hotfix][test] Adds back timestamp to log output This was accidentally removed with the changes of FLINK-34417 --- flink-tests/src/test/resources/log4j2-test.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flink-tests/src/test/resources/log4j2-test.properties b/flink-tests/src/test/resources/log4j2-test.properties index 843e105b0ea..4dcd8178762 100644 --- a/flink-tests/src/test/resources/log4j2-test.properties +++ b/flink-tests/src/test/resources/log4j2-test.properties @@ -28,7 +28,7 @@ appender.testlogger.name = TestLogger appender.testlogger.type = CONSOLE appender.testlogger.target = SYSTEM_ERR appender.testlogger.layout.type = PatternLayout -appender.testlogger.layout.pattern = [%-32X{flink-job-id}] %c{0} [%t] %-5p %m%n +appender.testlogger.layout.pattern = %-4r [%-32X{flink-job-id}] %c{0} [%t] %-5p %m%n logger.migration.name = org.apache.flink.test.migration logger.migration.level = INFO
