runelite: log startup failures as errors

This commit is contained in:
Adam
2020-04-26 11:56:39 -04:00
parent 64848fee59
commit d85a72da0f

View File

@@ -274,7 +274,7 @@ public class RuneLite
}
catch (Exception e)
{
log.warn("Failure during startup", e);
log.error("Failure during startup", e);
SwingUtilities.invokeLater(() ->
new FatalErrorDialog("RuneLite has encountered an unexpected error during startup.")
.open());