Switching log level from info to debug. Fixes #932

This commit is contained in:
Ryan Baxter
2021-12-09 10:58:06 -05:00
parent 3351926041
commit 5ba5616b8e
4 changed files with 4 additions and 4 deletions

View File

@@ -59,7 +59,7 @@ public class KubernetesClientConfigMapPropertySource extends ConfigMapPropertySo
private static Map<String, Object> getData(CoreV1Api coreV1Api, String name, String namespace,
Environment environment, String prefix, boolean includeProfileSpecificSources, boolean failFast) {
LOG.info("Loading ConfigMap with name '" + name + "' in namespace '" + namespace + "'");
LOG.debug("Loading ConfigMap with name '" + name + "' in namespace '" + namespace + "'");
try {
Set<String> names = new HashSet<>();
names.add(name);

View File

@@ -51,7 +51,7 @@ public class KubernetesClientSecretsPropertySource extends SecretsPropertySource
Map<String, String> labels, boolean failFast) {
Map<String, Object> result = new HashMap<>();
LOG.info("Loading Secret with name '" + name + "' or with labels [" + labels + "] in namespace '" + namespace
LOG.debug("Loading Secret with name '" + name + "' or with labels [" + labels + "] in namespace '" + namespace
+ "'");
try {
if (StringUtils.hasText(name)) {

View File

@@ -74,7 +74,7 @@ public class Fabric8ConfigMapPropertySource extends ConfigMapPropertySource {
private static Map<String, Object> getData(KubernetesClient client, String name, String namespace,
Environment environment, String prefix, boolean includeProfileSpecificSources, boolean failFast) {
LOG.info("Loading ConfigMap with name '" + name + "' in namespace '" + namespace + "'");
LOG.debug("Loading ConfigMap with name '" + name + "' in namespace '" + namespace + "'");
try {
Map<String, String> data = getConfigMapData(client, namespace, name);
Map<String, Object> result = new HashMap<>(processAllEntries(data, environment));

View File

@@ -49,7 +49,7 @@ public class Fabric8SecretsPropertySource extends SecretsPropertySource {
Map<String, String> labels, boolean failFast) {
Map<String, Object> result = new HashMap<>();
LOG.info("Loading Secret with name '" + name + "' or with labels [" + labels + "] in namespace '" + namespace
LOG.debug("Loading Secret with name '" + name + "' or with labels [" + labels + "] in namespace '" + namespace
+ "'");
try {