remove useless trace statement

Change-Id: If29a03b7db60cb3bb6598e47a7dc6d81342d71dc
This commit is contained in:
Ray Milkey 2019-02-14 10:27:19 -08:00 committed by Thomas Vachuska
parent dc77af5a4d
commit a90d9749cf

View File

@ -75,7 +75,6 @@ public final class ConfigPropertyDefinitions {
while ((line = br.readLine()) != null) {
if (!line.isEmpty() && !line.startsWith(COMMENT)) {
String[] f = line.split(SEP, 4);
log.info("Line is: {} length of array is: {}", line, f.length);
builder.add(defineProperty(f[0], Type.valueOf(f[1]), f[2], f[3]));
}
}