From 2c86319f5d19b0796d4e08e0f27c1dfdfe1e2747 Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Wed, 23 Oct 2024 15:44:48 +0900 Subject: [PATCH] Move default value descriptions to "description" in logging property metadata See gh-41933 --- .../additional-spring-configuration-metadata.json | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/spring-boot-project/spring-boot/src/main/resources/META-INF/additional-spring-configuration-metadata.json b/spring-boot-project/spring-boot/src/main/resources/META-INF/additional-spring-configuration-metadata.json index ae72f7a7c590..d08800519da3 100644 --- a/spring-boot-project/spring-boot/src/main/resources/META-INF/additional-spring-configuration-metadata.json +++ b/spring-boot-project/spring-boot/src/main/resources/META-INF/additional-spring-configuration-metadata.json @@ -175,16 +175,14 @@ { "name": "logging.pattern.console", "type": "java.lang.String", - "description": "Appender pattern for output to the console.", - "sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener", - "defaultValue": "Varies according to the logging system" + "description": "Appender pattern for output to the console. Its default value varies according to the logging system.", + "sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener" }, { "name": "logging.pattern.correlation", "type": "java.lang.String", - "description": "Appender pattern for log correlation.", - "sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener", - "defaultValue": "Varies according to the logging system" + "description": "Appender pattern for log correlation. Its default value varies according to the logging system.", + "sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener" }, { "name": "logging.pattern.dateformat", @@ -196,9 +194,8 @@ { "name": "logging.pattern.file", "type": "java.lang.String", - "description": "Appender pattern for output to a file.", - "sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener", - "defaultValue": "Varies according to the logging system" + "description": "Appender pattern for output to a file. Its default value varies according to the logging system.", + "sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener" }, { "name": "logging.pattern.level",