cschneider commented on code in PR #59: URL: https://github.com/apache/sling-org-apache-sling-distribution-core/pull/59#discussion_r889025653
########## src/main/java/org/apache/sling/distribution/servlet/DistributionPackageImporterServlet.java: ########## @@ -126,8 +127,10 @@ protected void doPost(SlingHttpServletRequest request, SlingHttpServletResponse ServletJsonUtils.writeJson(response, SC_OK, "package imported successfully", null); } catch (final Throwable e) { - ServletJsonUtils.writeJson(response, SC_INTERNAL_SERVER_ERROR, "an unexpected error has occurred during distribution import", null); - log.error("Error during distribution import", e); + String msg = format("an unexpected error has occurred during distribution import. Error:%s", Review Comment: One very small change request: There should be a space in front of %s I think. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@sling.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org