Skip to content

Commit f84d90d

Browse files
vpavicsnicoll
authored andcommitted
Fix additional-spring-configuration-metadata.json
This commit fixes invalid references to `LoggingApplicationListener` in `additional-spring-configuration-metadata.json`. Closes gh-9890
1 parent 92e48f6 commit f84d90d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

spring-boot/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{"groups": [
22
{
33
"name": "logging",
4-
"type": "org.springframework.boot.logging.LoggingApplicationListener"
4+
"type": "org.springframework.boot.context.logging.LoggingApplicationListener"
55
}
66
],"properties": [
77
{
@@ -47,65 +47,65 @@
4747
"name": "debug",
4848
"type": "java.lang.Boolean",
4949
"description": "Enable debug logs.",
50-
"sourceType": "org.springframework.boot.logging.LoggingApplicationListener",
50+
"sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener",
5151
"defaultValue": false
5252
},
5353
{
5454
"name": "logging.config",
5555
"type": "java.lang.String",
5656
"description": "Location of the logging configuration file.",
57-
"sourceType": "org.springframework.boot.logging.LoggingApplicationListener"
57+
"sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener"
5858
},
5959
{
6060
"name": "logging.exception-conversion-word",
6161
"type": "java.lang.String",
6262
"description": "Conversion word used when logging exceptions.",
6363
"defaultValue": "%wEx",
64-
"sourceType": "org.springframework.boot.logging.LoggingApplicationListener"
64+
"sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener"
6565
},
6666
{
6767
"name": "logging.file",
6868
"type": "java.lang.String",
6969
"description": "Name of the log file. Names can be an exact location or relative to the current directory.",
70-
"sourceType": "org.springframework.boot.logging.LoggingApplicationListener"
70+
"sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener"
7171
},
7272
{
7373
"name": "logging.level",
7474
"type": "java.util.Map<java.lang.String,java.lang.String>",
7575
"description": "Log levels severity mapping. Use 'root' for the root logger.",
76-
"sourceType": "org.springframework.boot.logging.LoggingApplicationListener"
76+
"sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener"
7777
},
7878
{
7979
"name": "logging.pattern.console",
8080
"type": "java.lang.String",
8181
"description": "Appender pattern for output to the console. Only supported with the default logback setup.",
82-
"sourceType": "org.springframework.boot.logging.LoggingApplicationListener",
82+
"sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener",
8383
"defaultValue": "%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint} %clr(${LOG_LEVEL_PATTERN:-%5p}) %clr(${PID:- }){magenta} %clr(---){faint} %clr([%15.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m%n${LOG_EXCEPTION_CONVERSION_WORD:-%wEx}"
8484
},
8585
{
8686
"name": "logging.pattern.file",
8787
"type": "java.lang.String",
8888
"description": "Appender pattern for output to the file. Only supported with the default logback setup.",
89-
"sourceType": "org.springframework.boot.logging.LoggingApplicationListener",
89+
"sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener",
9090
"defaultValue": "%d{yyyy-MM-dd HH:mm:ss.SSS} ${LOG_LEVEL_PATTERN:-%5p} ${PID:- } --- [%t] %-40.40logger{39} : %m%n${LOG_EXCEPTION_CONVERSION_WORD:-%wEx}"
9191
},
9292
{
9393
"name": "logging.pattern.level",
9494
"type": "java.lang.String",
9595
"description": "Appender pattern for log level (default %5p). Only supported with the default logback setup.",
96-
"sourceType": "org.springframework.boot.logging.LoggingApplicationListener"
96+
"sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener"
9797
},
9898
{
9999
"name": "logging.path",
100100
"type": "java.lang.String",
101101
"description": "Directory where log files are written.",
102-
"sourceType": "org.springframework.boot.logging.LoggingApplicationListener"
102+
"sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener"
103103
},
104104
{
105105
"name": "logging.register-shutdown-hook",
106106
"type": "java.lang.Boolean",
107107
"description": "Register a shutdown hook for the logging system when it is initialized.",
108-
"sourceType": "org.springframework.boot.logging.LoggingApplicationListener"
108+
"sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener"
109109
},
110110
{
111111
"name": "spring.mandatory-file-encoding",
@@ -218,7 +218,7 @@
218218
"name": "trace",
219219
"type": "java.lang.Boolean",
220220
"description": "Enable trace logs.",
221-
"sourceType": "org.springframework.boot.logging.LoggingApplicationListener",
221+
"sourceType": "org.springframework.boot.context.logging.LoggingApplicationListener",
222222
"defaultValue": false
223223
}
224224
],"hints": [

0 commit comments

Comments
 (0)