diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/LoggingSystemProperties.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/LoggingSystemProperties.java index 86d27022e0..dca12f87c7 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/LoggingSystemProperties.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/LoggingSystemProperties.java @@ -117,10 +117,9 @@ public class LoggingSystemProperties { private PropertyResolver getPropertyResolver() { if (this.environment instanceof ConfigurableEnvironment) { - PropertyResolver resolver = new PropertySourcesPropertyResolver( + PropertySourcesPropertyResolver resolver = new PropertySourcesPropertyResolver( ((ConfigurableEnvironment) this.environment).getPropertySources()); - ((PropertySourcesPropertyResolver) resolver) - .setIgnoreUnresolvableNestedPlaceholders(true); + resolver.setIgnoreUnresolvableNestedPlaceholders(true); return resolver; } return this.environment;