Skip to content

Commit

Permalink
Added log for more detail on Camunda send data to ODS (#1681)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhumin-fw authored Mar 19, 2024
1 parent 7c44f27 commit c6a8d6d
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ public class ODSAccessHandler extends AbstractAccessHandler {
public ResponseEntity<String> exchange(String url, HttpMethod method, String payload) {

payload = (payload == null) ? new JsonObject().toString() : payload;

System.out.println("ODSAccessHandler : ");
System.out.println(url);
System.out.println(method);
System.out.println(odsAuthHeader);
System.out.println(payload);
Mono<ResponseEntity<String>> entityMono = unauthenticatedWebClient.method(method).uri(url)
.header("Authorization", odsAuthHeader)
.accept(MediaType.APPLICATION_JSON)
Expand Down

0 comments on commit c6a8d6d

Please sign in to comment.