diff --git a/bundles/core/src/main/java/com/adobe/cq/wcm/core/components/internal/form/FormHandlerImpl.java b/bundles/core/src/main/java/com/adobe/cq/wcm/core/components/internal/form/FormHandlerImpl.java index c99010268e..54a99bce25 100644 --- a/bundles/core/src/main/java/com/adobe/cq/wcm/core/components/internal/form/FormHandlerImpl.java +++ b/bundles/core/src/main/java/com/adobe/cq/wcm/core/components/internal/form/FormHandlerImpl.java @@ -66,7 +66,8 @@ public boolean forwardFormData(JSONObject formData, String endPointUrl) { CHARSET))); try { String response = client.execute(post, new BasicResponseHandler()); - LOG.info("POSTing form data to '{}' succeeded: response: {}", endPointUrl, response); + LOG.debug("POSTing form data to '{}' succeeded: response: {}", endPointUrl, response); + LOG.info("POSTing form data succeeded through FormHandlerImpl"); return true; } catch (IOException e) { // for all status codes != 2xx an HttpResponseException is thrown (http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/impl/client/BasicResponseHandler.html)