Don't hide guice exceptions when popup doesn't work, log it!

This commit is contained in:
Mike Rosseel 2017-05-19 10:29:44 +02:00
parent dc32bd24b1
commit 991f6c9319

View file

@ -310,6 +310,7 @@ public class BisqApp extends Application {
}
UserThread.runPeriodically(() -> Profiler.printSystemLoad(log), LOG_MEMORY_PERIOD_MIN, TimeUnit.MINUTES);
} catch (Throwable throwable) {
log.error("Error during app init", throwable);
showErrorPopup(throwable, false);
}
}