reducing console logs noise

This commit is contained in:
rusEfi 2018-01-24 20:11:44 -05:00
parent e25937d7b9
commit 54dd00bcb0
2 changed files with 4 additions and 4 deletions

View File

@ -85,7 +85,7 @@ public class IniFileModel {
String key = list.isEmpty() ? null : list.removeFirst();
fields.add(new DialogModel.Field(key, uiLabel));
System.out.println("Field label=[" + uiLabel + "] : key=[" + key + "]");
System.out.println("IniFileModel: Field label=[" + uiLabel + "] : key=[" + key + "]");
}
private void handleDialog(LinkedList<String> list) {
@ -100,7 +100,7 @@ public class IniFileModel {
dialogId = keyword;
dialogUiName = name;
System.out.println("Dialog key=" + keyword + ": name=[" + name + "]");
System.out.println("IniFileModel: Dialog key=" + keyword + ": name=[" + name + "]");
}
private void trim(LinkedList<String> list) {

View File

@ -58,10 +58,10 @@ public class EngineSnifferPanel {
@Override
public Dimension getPreferredSize() {
Dimension d = chartPanel.getSize();
System.out.println("chartPanel size " + d);
// System.out.println("chartPanel size " + d);
Dimension s = super.getPreferredSize();
Dimension dimension = new Dimension((int) (d.width * zoomControl.getZoomProvider().getZoomValue()), s.height);
System.out.println("imagePanel getPreferredSize" + dimension);
// System.out.println("imagePanel getPreferredSize" + dimension);
return dimension;
}
};