mirror of https://github.com/rusefi/RomRaider.git
Update log warning message
This commit is contained in:
parent
d836c4c83e
commit
153f4ec542
|
@ -52,7 +52,6 @@ import java.io.FileWriter;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.text.DecimalFormat;
|
import java.text.DecimalFormat;
|
||||||
import java.text.MessageFormat;
|
import java.text.MessageFormat;
|
||||||
import java.text.ParseException;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -211,7 +210,7 @@ public final class DynoControlPanel extends JPanel {
|
||||||
private String iatLogUnits = "F";
|
private String iatLogUnits = "F";
|
||||||
private String atmLogUnits = "psi";
|
private String atmLogUnits = "psi";
|
||||||
private String vsLogUnits = LOG_VS_I;
|
private String vsLogUnits = LOG_VS_I;
|
||||||
private String throttle_param = THROTTLE_ANGLE;;
|
private String throttle_param = THROTTLE_ANGLE;
|
||||||
private final double[] results = new double[5];
|
private final double[] results = new double[5];
|
||||||
private final String[] resultStrings = new String[6];
|
private final String[] resultStrings = new String[6];
|
||||||
// private String hpUnits = "hp(I)";
|
// private String hpUnits = "hp(I)";
|
||||||
|
@ -1677,7 +1676,7 @@ public final class DynoControlPanel extends JPanel {
|
||||||
}
|
}
|
||||||
catch (Throwable t) { // file not found
|
catch (Throwable t) { // file not found
|
||||||
carTypeArr = new String[]{MISSING_CAR_DEF};
|
carTypeArr = new String[]{MISSING_CAR_DEF};
|
||||||
LOGGER.warn("No car_definition.xml file found!");
|
LOGGER.warn("No " + CARS_FILE + " file found, possible missing DTD issue?");
|
||||||
//t.printStackTrace();
|
//t.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue