diff --git a/java_console/.idea/runConfigurations/Launcher_COM3.xml b/java_console/.idea/runConfigurations/Launcher_COM3.xml
new file mode 100644
index 0000000000..5075cbed22
--- /dev/null
+++ b/java_console/.idea/runConfigurations/Launcher_COM3.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/java_console/.idea/runConfigurations/Launcher_COM4.xml b/java_console/.idea/runConfigurations/Launcher_COM4.xml
new file mode 100644
index 0000000000..cdb53b9ba6
--- /dev/null
+++ b/java_console/.idea/runConfigurations/Launcher_COM4.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/java_console/romraider/src/com/romraider/util/SettingsManager.java b/java_console/romraider/src/com/romraider/util/SettingsManager.java
index 9c98e166c2..cb1d50aee4 100644
--- a/java_console/romraider/src/com/romraider/util/SettingsManager.java
+++ b/java_console/romraider/src/com/romraider/util/SettingsManager.java
@@ -27,6 +27,7 @@ import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
+import com.rusefi.FileLog;
import org.w3c.dom.Document;
import org.xml.sax.InputSource;
@@ -72,9 +73,7 @@ public class SettingsManager {
final Document doc = parser.getDocument();
loadedSettings = domUms.unmarshallSettings(doc.getDocumentElement());
} catch (FileNotFoundException e) {
- showMessageDialog(null,
- "Settings file not found.\nUsing default settings.",
- "Error Loading Settings", INFORMATION_MESSAGE);
+ FileLog.MAIN.logLine("Settings file not found. Using default settings.");
loadedSettings = new Settings();
} catch (Exception e) {
throw new RuntimeException(e);