diff --git a/config/config-mp/src/main/java/io/helidon/config/mp/MpConfigImpl.java b/config/config-mp/src/main/java/io/helidon/config/mp/MpConfigImpl.java index 5f37f3a2b30..c4de1f0ffa9 100644 --- a/config/config-mp/src/main/java/io/helidon/config/mp/MpConfigImpl.java +++ b/config/config-mp/src/main/java/io/helidon/config/mp/MpConfigImpl.java @@ -92,8 +92,6 @@ class MpConfigImpl implements Config { this.converters.putIfAbsent(String.class, value -> value); this.configProfile = profile; - dumpConfigSources(this.sources); - this.valueResolving = getOptionalValue("mp.config.property.expressions.enabled", Boolean.class) .or(() -> getOptionalValue("helidon.config.value-resolving.enabled", Boolean.class)) .orElse(true); @@ -108,13 +106,6 @@ class MpConfigImpl implements Config { }); } - private void dumpConfigSources(List sources) { - System.out.println("CCCC ConfigSources"); - for (ConfigSource source : sources) { - System.out.println(" " + source.getOrdinal() + " " + source.getName()); - } - } - @Override public ConfigValue getConfigValue(String key) { @@ -128,8 +119,6 @@ public ConfigValue getConfigValue(String key) { ConfigValue profileValue = findConfigValue("%" + configProfile + "." + key) .orElseGet(() -> new ConfigValueImpl(key, null, null, null, 0)); - System.out.println("CCCCC " + "key=" + key + " value=" + value); - System.out.println("CCCCC " + "key=" + key + " profileValue=" + profileValue); return value.getSourceOrdinal() > profileValue.getSourceOrdinal() ? value : profileValue; }