Merge pull request #69 from msvab/master

Print exception when configmap cannot be parsed
This commit is contained in:
Ioannis Canellos
2017-05-04 11:06:01 +03:00
committed by GitHub

View File

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