Switching to debug level logging

This commit is contained in:
Ryan Baxter
2022-11-11 08:04:54 -05:00
parent 06a953efa3
commit fa013d3180

View File

@@ -118,7 +118,7 @@ public final class Fabric8ConfigUtils {
ConfigMap configMap = client.configMaps().inNamespace(namespace).withName(name).get();
if (configMap == null) {
LOG.warn("config-map with name : '" + name + "' not present in namespace : '" + namespace + "'");
LOG.debug("config-map with name : '" + name + "' not present in namespace : '" + namespace + "'");
return Collections.emptyMap();
}