From ccb282894591167f05d3ad46affe48b4d31733b8 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Wed, 28 Jan 2015 15:47:17 +0100 Subject: [PATCH] Narrow down the target type of logging.level While `logging.level` is managed in a dedicated way in `LoggingApplicationListener`, the value of the map are String values representing the level to apply. The meta-data now exposes that type instead of raw `java.lang.Object` Closes gh-2388 --- .../META-INF/additional-spring-configuration-metadata.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot/src/main/resources/META-INF/additional-spring-configuration-metadata.json b/spring-boot/src/main/resources/META-INF/additional-spring-configuration-metadata.json index 679aa1c662..3cf3e0275e 100644 --- a/spring-boot/src/main/resources/META-INF/additional-spring-configuration-metadata.json +++ b/spring-boot/src/main/resources/META-INF/additional-spring-configuration-metadata.json @@ -37,7 +37,7 @@ }, { "name": "logging.level", - "type": "java.util.Map", + "type": "java.util.Map", "description": "Log levels severity mapping. Use 'root' for the root logger.", "sourceType": "org.springframework.boot.logging.LoggingApplicationListener" },