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
This commit is contained in:
Stephane Nicoll
2015-01-28 15:47:17 +01:00
parent cd83c1c1b2
commit ccb2828945

View File

@@ -37,7 +37,7 @@
},
{
"name": "logging.level",
"type": "java.util.Map<java.lang.String,java.lang.Object>",
"type": "java.util.Map<java.lang.String,java.lang.String>",
"description": "Log levels severity mapping. Use 'root' for the root logger.",
"sourceType": "org.springframework.boot.logging.LoggingApplicationListener"
},