reducing logging noise
This commit is contained in:
parent
1d8e8d5f31
commit
17152899de
|
@ -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();
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue