replace system out with logging

This commit is contained in:
Sebastian Sdorra
2013-09-16 11:39:42 +02:00
parent 10b2221bb6
commit ac365b6329

View File

@@ -366,7 +366,7 @@ public class JAXBConfigurationEntryStore<V>
if (!element.isNil())
{
V v = element.getValue();
System.out.println( "value: " + v );
logger.trace("add element {} to configuration entry store", v);
entries.put(key, v);
}