reducing logging noise

This commit is contained in:
rusEfi 2018-01-24 20:15:47 -05:00
parent 54dd00bcb0
commit 362a689691
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ public class AverageAnglesUtil {
line = p[0];
aa.add(currentRpm, line);
logger.info(line);
logger.info("Got " + line);
}
String report = aa.getReport();

View File

@ -132,7 +132,7 @@ public class SettingsTab {
Field field = Field.VALUES.get(f.getKey().toUpperCase());
if (field == null)
throw new NullPointerException("No field for " + f.getKey());
System.out.println(field);
// System.out.println("Located " + field);
JComponent control;
if (field.getType() == FieldType.BIT) {