Skip to content

Commit

Permalink
fix(soap): remove logging of soap request and response
Browse files Browse the repository at this point in the history
  • Loading branch information
mathias-vandaele committed Jan 14, 2025
1 parent dfd774f commit 0ce52ff
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 48 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ public Object execute(OutboundConnectorContext context) throws Exception {
.withPreserveNamespaces(false)
.build()
.toJson(XmlUtilities.xmlStringToDocument(soapResponseMessage));
LOG.debug("Response to connector runtime: \n{}", response.toPrettyString());
return response;
} catch (WebServiceException e) {
if (e instanceof SoapFaultClientException soapFaultClientException) {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ private ClientInterceptor[] buildInterceptors(
List<ClientInterceptor> interceptorList = new ArrayList<>();
handleAuthentication(authentication).ifPresent(interceptorList::add);
handleSoapHeader(soapHeader, namespaces).ifPresent(interceptorList::add);
interceptorList.add(new LoggingInterceptor());
return interceptorList.toArray(new ClientInterceptor[0]);
}

Expand Down

0 comments on commit 0ce52ff

Please sign in to comment.