Browse Source

Log the full exception details and stack trace when creating bootstraps.

v2.0-beta
CalDescent 3 years ago
parent
commit
63cabbe960
  1. 1
      src/main/java/org/qortal/api/resource/BootstrapResource.java

1
src/main/java/org/qortal/api/resource/BootstrapResource.java

@ -54,6 +54,7 @@ public class BootstrapResource {
return bootstrap.create();
} catch (DataException | InterruptedException | IOException e) {
LOGGER.info("Unable to create bootstrap", e);
throw ApiExceptionFactory.INSTANCE.createCustomException(request, ApiError.REPOSITORY_ISSUE, e.getMessage());
}
}

Loading…
Cancel
Save