Show full stack trace when bootstrapping fails for any reason.

This commit is contained in:
CalDescent 2021-10-12 08:08:05 +01:00
parent 290a19b6c6
commit af8608f302

View File

@ -319,7 +319,7 @@ public class Bootstrap {
break;
} catch (DataException e) {
LOGGER.info("Bootstrap import failed: {}", e.getMessage());
LOGGER.info("Bootstrap import failed", e);
this.updateStatus(String.format("Bootstrapping failed. Retrying in %d minutes...", retryMinutes));
Thread.sleep(retryMinutes * 60 * 1000L);
retryMinutes *= 2;