Update log warning message

This commit is contained in:
Dale Schultz 2021-12-07 17:59:13 -05:00
parent d836c4c83e
commit 153f4ec542
No known key found for this signature in database
GPG Key ID: EA2C8AD6CB5C2AF2
1 changed files with 13 additions and 14 deletions

View File

@ -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();
} }
} }