Enhancment/improve config map property source logging (#404)

* added exception to logging

* just passing exception
This commit is contained in:
fico-jessecarroll
2019-06-13 07:18:05 -05:00
committed by Ryan Baxter
parent 87ab961e89
commit ccc81691dd

View File

@@ -98,7 +98,7 @@ public class ConfigMapPropertySource extends MapPropertySource {
}
catch (Exception e) {
LOG.warn("Can't read configMap with name: [" + name + "] in namespace:["
+ namespace + "]. Ignoring");
+ namespace + "]. Ignoring.", e);
}
return new HashMap<>();