Skip to content

Commit

Permalink
Merge pull request #122 from assimbly/bugfix/issue-121/soap-endpoint-…
Browse files Browse the repository at this point in the history
…--log-exception

Soap endpoint - log exception
  • Loading branch information
skin27 authored Mar 28, 2023
2 parents 984be94 + feaab64 commit 4ddb5e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2057,7 +2057,7 @@ public String getListOfSoapActions(String url, String mediaType) throws Exceptio
Method method = clazz.getDeclaredMethod("getSoapActions", String.class);
result = (String) method.invoke(soapActions, url);
} catch (Exception e) {
log.error("SOAP Actions couldn't be retrieved.");
log.error("SOAP Actions couldn't be retrieved.", e);
result = "[]";
}

Expand Down

0 comments on commit 4ddb5e6

Please sign in to comment.