Switching log level from info to debug. Fixes #932
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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)) {
|
||||
|
||||
@@ -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));
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user