Skip to content

Commit b413bb2

Browse files
committed
still broken
1 parent 9682f45 commit b413bb2

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

spring-cloud-kubernetes-commons/src/main/java/org/springframework/cloud/kubernetes/commons/config/ConfigMapPropertySourceLocator.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,10 @@ public PropertySource<?> locate(Environment environment) {
8585
sources.forEach(s -> {
8686
MapPropertySource propertySource = getMapPropertySource(s, env);
8787
if (propertySource.getPropertyNames().length == 0) {
88-
LOG.info("Skipping empty config map property source source " + propertySource.getName());
88+
LOG.debug("Skipping empty config map property source source " + propertySource.getName());
8989
}
9090
else {
91+
LOG.debug("Adding config map property source " + propertySource.getName());
9192
composite.addPropertySource(propertySource);
9293
}
9394
});

spring-cloud-kubernetes-integration-tests/spring-cloud-kubernetes-k8s-client-reload/src/main/resources/application-with-secret.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
logging:
22
level:
3-
root: DEBUG
3+
org:
4+
springframework:
5+
cloud:
6+
kubernetes: debug
47

58
spring:
69
application:

0 commit comments

Comments
 (0)